realm-js/README.md

144 lines
5.7 KiB
Markdown
Raw Normal View History

2016-02-18 21:50:56 +00:00
![Realm](https://github.com/realm/realm-js/raw/master/logo.png)
2015-08-13 17:29:37 +00:00
2016-02-15 17:21:55 +00:00
Realm is a mobile database that runs directly inside phones, tablets or wearables.
This project hosts the JavaScript versions of [Realm](https://realm.io/). Currently we only support React Native (both iOS & Android) and Node.js (on MacOS and Linux) but we are considering adding support for Cordova/PhoneGap/Ionic as well.
2015-10-20 22:41:22 +00:00
2016-02-15 17:21:55 +00:00
## Features
2015-08-24 16:26:51 +00:00
2016-02-15 17:21:55 +00:00
* **Mobile-first:** Realm is the first database built from the ground up to run directly inside phones, tablets and wearables.
2017-03-15 07:44:50 +00:00
* **Simple:** Data is directly [exposed as objects](https://realm.io/docs/javascript/latest/#models) and [queryable by code](https://realm.io/docs/javascript/latest/#queries), removing the need for ORM's riddled with performance & maintenance issues.
* **Modern:** Realm supports relationships, generics, and vectorization.
2016-02-15 17:21:55 +00:00
* **Fast:** Realm is faster than even raw SQLite on common operations, while maintaining an extremely rich feature set.
2015-08-13 17:29:37 +00:00
2015-11-05 01:04:35 +00:00
## Getting Started
2017-02-06 22:00:02 +00:00
Please see the detailed instructions in our docs to use [Realm Javascript](https://realm.io/docs/javascript/latest/#getting-started).
2015-11-05 01:04:35 +00:00
## Documentation
### Realm React Native and Node.js
2017-02-06 22:00:02 +00:00
The documentation can be found at [realm.io/docs/javascript/latest](https://realm.io/docs/javascript/latest).
The API reference is located at [realm.io/docs/javscript/latest/api](https://realm.io/docs/javascript/latest/api).
2016-01-04 23:58:16 +00:00
2016-02-15 17:21:55 +00:00
## Getting Help
- **Need help with your code?**: Look for previous questions on the [#realm tag](https://stackoverflow.com/questions/tagged/realm?sort=newest) — or [ask a new question](https://stackoverflow.com/questions/ask?tags=realm). We actively monitor and answer questions on SO!
- **Have a bug to report?** [Open an issue](https://github.com/realm/realm-js/issues/new). If possible, include the version of Realm, a full log, the Realm file, and a project that shows the issue.
- **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.
2017-08-17 20:13:57 +00:00
- Sign up for our [**Community Newsletter**](https://go.pardot.com/l/210132/2017-04-26/3j74l) to get regular tips, learn about other use-cases and get alerted of blog posts and tutorials about Realm.
2016-02-18 22:19:08 +00:00
## Building Realm
2016-02-18 22:19:08 +00:00
In case you don't want to use the precompiled version on npm, you can build Realm yourself from source. Youll need an Internet connection the first time you build in order to download the core library.
Prerequisites:
- Node 4.0+
- Xcode 7.2+
- Android SDK 23+
- Android NDK 10e+
2016-02-18 22:19:08 +00:00
First clone this repository:
2016-02-18 22:19:08 +00:00
```
2016-11-22 19:08:33 +00:00
git clone https://github.com/realm/realm-js.git
2016-02-18 22:19:08 +00:00
```
Then in the cloned directory:
```
git submodule update --init --recursive
```
```Note: If you have cloned the repo previously make sure you remove your node_modules directory since it may contain stale dependencies which may cause the build to fail.```
To build for iOS:
2016-03-23 20:39:26 +00:00
- Open `react-native/ios/RealmReact.xcodeproj`
- Select `RealmReact.framework` as the build target
- Build
To build for Android:
- `cd react-native/android`
- `./gradlew publishAndroid`
- The compiled version of the Android module is here: `<project-root>/android`
2016-01-04 23:58:16 +00:00
2017-03-15 14:25:05 +00:00
To build for nodejs:
```
2017-03-30 06:36:07 +00:00
npm install --build-from-source
2017-03-15 14:25:05 +00:00
```
- On Windows you will need to setup the environment for node-gyp
- Option 1: Install windows-build-tools node package
- Open an elevated command prompt (As Administrator)
```
npm install -g --production windows-build-tools
```
* Option 2: Manually install and configure
- Check [node-gyp](https://github.com/nodejs/node-gyp) manual for custom installation procedure for Windows
## Running the tests
You can use scripts/tests.sh to run the various tests.
You will need yarn installed on the machine.
test.sh options
* eslint - lints the sources
* react-tests - runs all React Native tests on iOS Simulator
* react-tests-android runs all React Native Android tests on Android emulator
* node - runs all tests for node
* test-runners - checks supported tests runners are working correctly
2017-03-30 08:33:40 +00:00
On Windows some of these targets are available as npm commands.
```
npm run eslint
npm run node-tests
npm run test-runners
```
## Debugging the tests
2017-03-15 14:25:05 +00:00
2017-03-16 12:40:06 +00:00
You can attach a debugger to react-native tests by passing "Debug" to the tests.sh script. A Chrome browser will open and connect to the react native application. Use the built-in Chrome Debugger to debug the code.
2017-03-15 14:25:05 +00:00
2017-03-16 12:40:06 +00:00
```
./tests.sh react-tests Debug
```
2017-03-15 14:25:05 +00:00
2017-03-30 08:33:40 +00:00
Using Visual Studio Code
You can debug node tests using Visual Studio Code. Just use one of the launch configurations.
2016-02-18 22:19:08 +00:00
## Code of Conduct
2016-02-15 17:21:55 +00:00
This project adheres to the Contributor Covenant [code of conduct](https://realm.io/conduct/).
2016-02-18 21:41:22 +00:00
By participating, you are expected to uphold this code. Please report unacceptable behavior to [info@realm.io](mailto:info+conduct@realm.io).
2016-02-15 17:21:55 +00:00
## Contributing
See [CONTRIBUTING.md](https://github.com/realm/realm-js/blob/master/CONTRIBUTING.md) for more details!
## License
Realm JS is published under the Apache 2.0 license.
2017-08-16 19:00:48 +00:00
Realm Core is also published under the Apache 2.0 license and is available
[here](https://github.com/realm/realm-core).
**This product is not being made available to any person located in Cuba, Iran,
North Korea, Sudan, Syria or the Crimea region, or to any other person that is
not eligible to receive the product under U.S. law.**
2016-02-15 17:21:55 +00:00
## Feedback
2015-11-05 06:37:41 +00:00
2017-08-16 19:03:24 +00:00
**_If you use Realm and are happy with it, all we ask is that you please consider sending out a tweet mentioning [@realm](https://twitter.com/realm) to share your thoughts_**
2016-02-15 17:21:55 +00:00
**_And if you don't like it, please let us know what you would like improved, so we can fix it!_**
2016-01-12 20:06:01 +00:00
2017-07-21 18:35:27 +00:00
![analytics](https://ga-beacon.appspot.com/UA-50247013-2/realm-js/README?pixel)