delta-sync-engine
v2.4.0
Published
The Action-Based Sync Engine for JavaScript apps.
Maintainers
Readme
delta-sync
The official client SDK for the Delta Sync Engine.
Installation
npm install delta-syncUsage
import { Delta } from 'delta-sync';
const delta = new Delta('http://localhost:3000', {
projectId: 'YOUR_PROJECT_ID',
apiKey: 'YOUR_API_KEY'
});
// Subscribe to changes
delta.subscribe(data => {
console.log('Data updated:', data);
});
// Mutate data
delta.set('todos', 'doc_1', { title: 'Buy milk', done: false });