| commit | 66fbcd97a09bbe8a399cb47c29191ac68b8c6a1a | [log] [tgz] |
|---|---|---|
| author | Will Holley <willholley@gmail.com> | Fri Jan 23 18:17:42 2015 +0000 |
| committer | Will Holley <willholley@gmail.com> | Sun Jan 25 10:03:02 2015 +0000 |
| tree | 34c7e4a21206d363e5234bf3c5edfc2401843cf0 | |
| parent | 91c5ba0f3a5b9d2ec11b7174ad7a542fb4a167ae [diff] |
(#3220) - Remove sequence number arithmetic in changes.js Remove the seq - 1 logic from since=now/latest and continuous changes implementation.
PouchDB was written to help web developers build applications that work as well offline as well as they do online, applications save data locally so the user can use all the features of an app even while offline and synchronise the data between clients so they have up to date data wherever they go.
PouchDB is a free open source project, written in Javascript by these wonderful contributors and inspired by Apache CouchDB.
To get started using PouchDB check out our Documentation and the API Documentation.
If you want to get involved then check out the contributing guide
var db = new PouchDB('dbname'); db.put({ _id: 'dave@gmail.com', name: 'David', age: 66 }); db.changes().on('change', function() { console.log('Ch-Ch-Changes'); }); db.replicate.to('http://example.com/mydb');