RNSync
About
RNSync is a React Native module that allows you to work with your Cloudant or CouchDB database locally (on the mobile device) and replicate to the remote database when needed.
RNSync is a wrapper for Cloudant Sync, which simplifies large-scale mobile development by enabling you to create a single database for every user; you simply replicate and sync the copy of this database in Cloudant with a local copy on their phone or tablet. This can reduce round-trip database requests with the server. If there’s no network connection, the app runs off the database on the device; when the network connection is restored, Cloudant re-syncs the device and server.
You can get an instance of Cloudant by creating an account on IBM Bluemix.
RNSync only supports ReactNative > 0.40
RNSync works with Redux Persist. Please read the RNSyncStorage doc for more info. You may also prefer the simplified API.
Installation
Install with npm
npm install --save rnsync
iOS
Add CDTDatastore to your Podfile
pod 'CDTDatastore'
Link and Pod install
react-native link rnsynccd ios;pod install
Android
react-native link rnsync
Usage
Init
The below example exposes your credentials on every device, and the database must already exist, but it is fine for testing the package.
To avoid exposing credentials create a web service to authenticate users and set up databases for client devices. This web service needs to:
- Handle sign in/sign up for users.
- Create a new remote database for a new user.
- Grant access to the new database for the new device (e.g., via API keys on Cloudant or the _users database in CouchDB).
- Return the database URL and credentials to the device.
You can use the rnsync_key_generator package with your Express server to easily handle database and credentials creation. Also refer to cloudantApiKeyGenerator for an example of adding this functionality to your Express server if you do not wish to use rnsync_key_generator.
// init with your cloudant or couchDB databasevar dbUrl = "https://user:pass@xxxxx"var dbName = "name_xxxx" rnsync;
To create multiple datastores, import the RNSync class (this will be the default in the next major release)
let store1 = dbUrl dbNameawait store1store1 let store2 = dbUrl dbName2await store2store2
Create
Both the object and the id are optional. If you leave out the object it will create a new doc that is empty. If you leave out the id that will be autogenerated for you.
var object = x:10var id = "whatever" rnsync; rnsync; // note: create will return an error if the id already existrnsync;
Find or Create
Returns the doc with the specified id. It will create the doc if it does not already exist.
rnsync;
Retrieve
Returns the doc with the specified id.
var id = "whatever" rnsync;
Update
When doing an update to a doc, you must include the revision.
docbodysomechange = "hi mom" rnsync;
Delete
rnsync;
Replicate
All of the CRUD functions only affect the local database. To push your changes to the remote server you must replicate. For more details see the replication docs
Push your local changes to the remote database
rnsync
Pull changes from the remote database to your local
rnsync
Do both a push and a pull
rnsync
Find
Query for documents. For more details on the query semantics please see the Cloudant query documentation
var query = name: 'John' age: '$gt': 25 rnsync;
Usage with redux-persist
let dbUrl = "https://xxx:xxx-bluemix.cloudant.com";let dbName = "rnsync" rnsync const store =
If you want to do replication before loading the store then:
rnsync
It is up to you to decide when and where to do replication. Later I will add the ability automatically do a replication push when data changes (from a whitelist you pass to rnsyncStorage.)
Author
Patrick Cremin, pwcremin@gmail.com
License
RNSync is available under the MIT license. See the LICENSE file for more info.