| commit | ed1a25868a14b142462beb6dfacaed60dac428a6 | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Sat Jan 17 14:13:45 2015 -0500 |
| committer | Nolan Lawson <nolan.lawson@gmail.com> | Sat Jan 17 14:13:47 2015 -0500 |
| tree | 3d03c14bf8b750fb7b6c6f08a3c489a8873e043b | |
| parent | cef1ded5712dea0256e8fe4d2c9ffaf48c891651 [diff] |
(#3405) - remove pouchdb-express-router test So now that we have the minimumForPouchDB mode in express-pouchdb, I think we can deprecate pouchdb-express-router. Having two parallel codebases always made me nervous anyway.
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');