Live data from Hacker News

Open Source Replication and Offline Sync for Node.js and Devices

strongloop.com

1–4 of 4 posts

Re: Open Source Replication and Offline Sync for Node.js and Devices

#3
post #2

Does this work using localStorage? What about PouchDB?

loopback.createDataSource({localStorage: 'mydb', connector: loopback.Memory});

...will allow you to read/write/replicate/etc models with the browser's localStorage.

LoopBack replication/sync is similar to PouchDB. The important distinction is that loopback can sync with any connector that supports the basic crud methods:

http://docs.strongloop.com/display/DOC/Data+sources+and+conn...