| commit | 6f7d15c1fcaaac0e6eb70ec19c7b6067cd8e5a23 | [log] [tgz] |
|---|---|---|
| author | Dale Harvey <dale@arandomurl.com> | Thu Aug 14 13:41:16 2014 -0700 |
| committer | Dale Harvey <dale@arandomurl.com> | Thu Aug 14 13:41:16 2014 -0700 |
| tree | 56379719df67b8a2f7158c57589140c296003808 | |
| parent | 5095ce00c87e5ea5070415e7a2608e112941e243 [diff] |
(#2610) - Follow up to increase depths Travis needs to have the last X commits in order to checkout, so depth shouldnt be lower than what we expect the maximum queue of changes to be tested
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');