| commit | b0bf8e19ef2cdfb87147c57e5319f8c1474061ed | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Sun Apr 26 10:37:50 2015 -0400 |
| committer | Nolan Lawson <nolan.lawson@gmail.com> | Sun Apr 26 10:38:05 2015 -0400 |
| tree | 322ab1fa0173b74d772d5d7f586db6ab713a5da3 | |
| parent | 42c86b481b604961561f2caf27fd91d01d8dc92f [diff] |
(#3765) - checkpointer should browserify smaller When the checkpointer is required externally from `'pouchdb/extras/checkpointer'`, it's too big because it pulls in all of utils. This makes it smaller.
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: 68 }); db.changes().on('change', function() { console.log('Ch-Ch-Changes'); }); db.replicate.to('http://example.com/mydb');