Realm is a mobile database: an alternative to SQLite & key-value stores https://realm.io
Go to file
Ari Lazier c493a8070b add workspace and clean up xcproject layout 2016-04-29 12:00:40 -07:00
Realm.xcworkspace add workspace and clean up xcproject layout 2016-04-29 12:00:40 -07:00
docs Merge pull request #340 from realm/sk-collection 2016-03-21 15:27:18 -07:00
examples Update apps to use React Native 0.22 2016-03-24 17:35:46 -07:00
lib Fix Realm.Object in Chrome debug mode 2016-04-26 17:33:33 -07:00
react-native add workspace and clean up xcproject layout 2016-04-29 12:00:40 -07:00
scripts Make sure core is downloaded for node tests 2016-04-19 17:10:14 -07:00
src add workspace and clean up xcproject layout 2016-04-29 12:00:40 -07:00
tests Merge pull request #383 from realm/al-migration 2016-04-28 15:40:27 -07:00
vendor submodule fixes 2016-03-03 14:48:41 -08:00
.eslintignore Properly configure ESLint for syntax checking 2016-03-16 13:01:38 -07:00
.eslintrc.json Properly configure ESLint for syntax checking 2016-03-16 13:01:38 -07:00
.gitignore Add test script for Node 2016-04-19 14:10:10 -07:00
.gitmodules submodule fixes 2016-03-03 14:48:41 -08:00
CHANGELOG.md Update CHANGELOG with crash fix 2016-04-28 12:52:15 -07:00
CONTRIBUTING.md Make link to CONTRIBUTING.md absolute 2016-03-17 15:14:56 -07:00
LICENSE Add LICENSE file 2016-02-18 15:30:44 -08:00
README.md Minor update to README 2016-03-23 13:39:26 -07:00
logo.png add logo 2016-02-18 13:50:56 -08:00
package.json Merge branch 'master' into sk-node 2016-04-18 14:19:06 -07:00

README.md

Realm

Realm is a mobile database that runs directly inside phones, tablets or wearables. This project hosts the JavaScript versions of Realm. Currently we only support React Native (both iOS & Android) but we are considering adding support for Cordova/PhoneGap/Ionic as well as Node.js (V8) soon.

Features

  • Mobile-first: Realm is the first database built from the ground up to run directly inside phones, tablets and wearables.
  • Simple: Data is directly exposed as objects and queryable by code, removing the need for ORM's riddled with performance & maintenance issues.
  • Modern: Realm supports relationships, generics, and vectorization.
  • Fast: Realm is faster than even raw SQLite on common operations, while maintaining an extremely rich feature set.

Getting Started

Please see the detailed instructions in our docs to use Realm React Native.

Documentation

Realm React Native

The documentation can be found at realm.io/docs/react-native/latest.
The API reference is located at realm.io/docs/react-native/latest/api.

Getting Help

  • Need help with your code?: Look for previous questions on the #realm tag — or ask a new question. We actively monitor and answer questions on SO!
  • Have a bug to report? Open an issue. 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. Tell us what the feature should do, and why you want the feature.
  • Sign up for our Community Newsletter to get regular tips, learn about other use-cases and get alerted of blog posts and tutorials about Realm.

Building Realm

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+

First clone this repository:

git clone https://github.com/realm/realm-js.git

Then in the cloned directory:

git submodule update --init --recursive

To build for iOS:

  • 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

Code of Conduct

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to info@realm.io.

Contributing

See CONTRIBUTING.md for more details!

License

Realm JS is published under the Apache 2.0 license. The underlying core is available under the Realm Core Binary License while we work to open-source it under the Apache 2.0 license.

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.

Feedback

If you use Realm and are happy with it, all we ask is that you please consider sending out a tweet mentioning @realm, or email help@realm.io about your great apps!

And if you don't like it, please let us know what you would like improved, so we can fix it!