Minor edits.
This commit is contained in:
parent
be26957cf1
commit
0d89032439
19
README.md
19
README.md
|
@ -30,9 +30,9 @@ The API reference is located at [realm.io/docs/react-native/latest/api](https://
|
|||
- **Have a feature request?** [Open an issue](https://github.com/realm/realm-js/issues/new). Tell us what the feature should do, and why you want the feature.
|
||||
- Sign up for our [**Community Newsletter**](http://eepurl.com/VEKCn) to get regular tips, learn about other use-cases and get alerted of blog posts and tutorials about Realm.
|
||||
|
||||
## Building Realm JS
|
||||
## Building Realm
|
||||
|
||||
In case you don't want to use the precompiled version on npm, you can build Realm JS yourself from source. You’ll need an Internet connection the first time you build in order to download the core library.
|
||||
In case you don't want to use the precompiled version on npm, you can build Realm yourself from source. You’ll need an Internet connection the first time you build in order to download the core library.
|
||||
|
||||
Prerequisites:
|
||||
- Node 4.0+
|
||||
|
@ -40,10 +40,17 @@ Prerequisites:
|
|||
- Android SDK 23+
|
||||
- Android NDK 10e+
|
||||
|
||||
`git clone https://github.com/realm/realm-js.git`
|
||||
First clone this repository:
|
||||
|
||||
In the cloned directory:
|
||||
`git submodule update --init --recursive`
|
||||
```
|
||||
git clone https://github.com/realm/realm-js.git
|
||||
```
|
||||
|
||||
Then in the cloned directory:
|
||||
|
||||
```
|
||||
git submodule update --init --recursive
|
||||
```
|
||||
|
||||
To build for iOS:
|
||||
- Open `RealmJS.xcodeproj`
|
||||
|
@ -55,7 +62,7 @@ To build for Android:
|
|||
- `./gradlew publishAndroid`
|
||||
- The compiled version of the Android module is here: `<project-root>/android`
|
||||
|
||||
## Conduct
|
||||
## Code of Conduct
|
||||
|
||||
This project adheres to the Contributor Covenant [code of conduct](https://realm.io/conduct/).
|
||||
By participating, you are expected to uphold this code. Please report unacceptable behavior to [info@realm.io](mailto:info+conduct@realm.io).
|
||||
|
|
Loading…
Reference in New Issue