
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
realm-sync-js
Advanced tools
We believe that offline-first applications make for the best user experience:
Products like Evernote, Google Keep, and Kindle have syncing solutions that highlight the merits of ensuring user data is available across devices and have thus raised users' expectations of how they interact with their mobile apps. Syncing is a challenging technical problem and many businesses have developed proprietary syncing technology that can be used as a competitive advantage. KiteSync’s goal is to make syncing an easy experience both for developers and users alike.
Realm provides an exciting mobile database with a low memory and space footprint. We built an API wrapper over Realm to give full remote syncing functionality for react-native apps.
KiteSync is an open-source solution to syncing realm.io react-native databases by using an external remote service. This library empowers developers to focus on offline first functionality in their mobile apps.
KiteSync is built on top of Realm.io and consists of two components:
KiteSync provides the following service to developers:
KiteSync was first built by Alamu Palaniappan, Colin Goltra, David Ogor, and Mike Jonas
###Requirements
###Installation
$ npm install realm-sync-js
###API Documentation You can use KiteSync methods in a similar manner to how you would use realm CRUD methods.
new RealmSync(schema[, path])
Instantiate an instance of realm and realm sync.
.create(type, properties[, update])
Create an object that can be synchronized.
.delete(realmObject)
Delete an object from the local realm storage database.
.getRealmInstance()
Provides an instantiated instance of the Realm library.
.sync(callback [,serviceWinsPolicy])
Synchronizes changes with remote service based on . Node style callback that return true for success.
##Example
const Realm = require('realm');
const RealmSync = require('kitesync');
// Create your schema
var PersonSchema = {}
PersonSchema.schema = {
name: 'Person',
properties: {
name: String,
address: String
}
}
// Instantiate KiteSync
const realmSync = RealmSync([PersonSchema]);
const realm = realmSync.getRealmInstance();
// Function used to create a person in realm
realm.write(() => {
realmSync.create('Person', {
name: 'Brian Smith',
address: '123 Main St'
});
});
realmSync.sync(function(error, success) {
if (error) throw new Error(error);
console.log(success);
});
This library was made possible by the creative efforts of developers like you and we would be happy to have you contribute to KiteSync's future success. If you'd like to be a contributor, check out our Contributing guide.
Also, checkout out KiteSync.io periodically for updates.
MIT License
Copyright (c) 2016 KiteSync Team (Alamu Palaniappan, Colin Goltra, David Ogor, Mike Jonas)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
___ __ ___ _________ _______ ________ ___ ___ ________ ________
|\ \|\ \ |\ \|\___ ___\\ ___ \ |\ ____\ |\ \ / /|\ ___ \|\ ____\
\ \ \/ /|\ \ \|___ \ \_\ \ __/| \ \ \___|_ \ \ \/ / | \ \\ \ \ \ \___|
\ \ ___ \ \ \ \ \ \ \ \ \_|/__ \ \_____ \ \ \ / / \ \ \\ \ \ \ \
\ \ \\ \ \ \ \ \ \ \ \ \ \_|\ \ \|____|\ \ \/ / / \ \ \\ \ \ \ \____
\ \__\\ \__\ \__\ \ \__\ \ \_______\ ____\_\ \ __/ / / \ \__\\ \__\ \_______\
\|__| \|__|\|__| \|__| \|_______| |\_________\\___/ / \|__| \|__|\|_______|
\|_________\|___|/
FAQs
Offline first syncing library for realm-js
The npm package realm-sync-js receives a total of 4 weekly downloads. As such, realm-sync-js popularity was classified as not popular.
We found that realm-sync-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.