Realm is a mobile database: an alternative to SQLite & key-value stores https://realm.io
Go to file
Radu Tutueanu 2543413017 Build and publish node pre-gyp binaries (#657)
* Build node pre-gyp for linux

* Add Jenkisfile

* Fix core package names

* Fix Jenkinsfile errors

* To revert: only build using 4.4.7

* Do not download on linux

* Fix wrong argument

* Fix archiving linux artifacts

* Try to fix

* Revert "Try to fix"

This reverts commit 8bcd1d0ffb539b9f2881ce8e0396681b55caf69e.

* Fix moving the gyp binaries

* Update version

* Revert "To revert: only build using 4.4.7"

This reverts commit b829c0e0d27b1baed50c3af436731c5014de290f.

* Bump version in dependencies

* Publish binaries

* Use correct version

* Remove unneded quote

* Fix publish
2016-11-23 15:09:47 +01:00
Realm.xcworkspace Sync and fine grained notifications 2016-10-04 15:07:14 -07:00
docs Fix docs and test according to new api 2016-11-16 13:36:41 +01:00
examples Make eslint happy 2016-11-16 21:18:08 +01:00
lib add non-working listener methods 2016-11-22 07:27:58 -08:00
packaging Build and publish node pre-gyp binaries (#657) 2016-11-23 15:09:47 +01:00
react-native Adding a build type to switch between Core & Core+Sync 2016-11-14 13:26:33 +00:00
scripts Build and publish node pre-gyp binaries (#657) 2016-11-23 15:09:47 +01:00
src [0.15.1-rc] Bump version 2016-11-22 16:42:07 -08:00
tests Fix docs and test according to new api 2016-11-16 13:36:41 +01:00
vendor Sync and fine grained notifications 2016-10-04 15:07:14 -07:00
.dir-locals.el Sync and fine grained notifications 2016-10-04 15:07:14 -07:00
.dockerignore Add ability to run Node tests on Linux 2016-06-17 02:38:33 -07:00
.eslintignore Bumped version of ESLint, added eslinting of specs, make all linting pass 2016-11-14 10:48:50 -08:00
.eslintrc.json Bumped version of ESLint, added eslinting of specs, make all linting pass 2016-11-14 10:48:50 -08:00
.gitignore add node-sync to .gitignore 2016-11-15 08:33:07 -08:00
.gitmodules Use latest object store 2016-10-25 00:46:49 +02:00
CHANGELOG.md [0.15.1-rc] Bump version 2016-11-22 16:42:07 -08:00
CONTRIBUTING.md Make link to CONTRIBUTING.md absolute 2016-03-17 15:14:56 -07:00
Dockerfile Added docker-test.sh wrapper for running linux tests 2016-11-10 19:13:52 +01:00
LICENSE Add LICENSE file 2016-02-18 15:30:44 -08:00
README.md Update README.md 2016-11-22 20:08:33 +01:00
binding.gyp Move apple-related file to mac target 2016-11-14 20:57:01 +01:00
dependencies.list Build and publish node pre-gyp binaries (#657) 2016-11-23 15:09:47 +01:00
logo.png update Realm logo in README (#481) 2016-06-11 10:19:27 +09:00
package.json [0.15.1-rc] Bump version 2016-11-22 16:42:07 -08: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

To build for Node:

  • REALM_CORE_PREFIX=/path/to/realm-core REALM_SYNC_PREFIX=/path/to/realm-sync npm install

The REALM_*_PREFIX paths need to be absolute. Make sure to run sh build.sh build-node in both core and sync. Optionally export REALMJS_USE_DEBUG_CORE=true to link against the debug version of the realm binaries.

To build the Developer Edition of the module, pass --developer_edition to npm install or change the default value in binding.gyp.

node-pre-gyp is used for packaging. Run scripts/build-node-pre-gyp.sh with the same arguments and environment variables as npm install on all platforms (e.g. Linux and Darwin). Then, edit package.json to remove the --build-from-source option from the install script and run npm pack. Lastly, either create a fat package by merging all the tarballs created so far into one, or upload the node-pre-gyp tarballs to the CDN the binary section of package.json points to.

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!