| commit | d649deffee03987f1721e445fbead2b44d20224a | [log] [tgz] |
|---|---|---|
| author | Marten de Vries <marten94@gmail.com> | Thu Jan 08 14:38:29 2015 +0100 |
| committer | Marten de Vries <marten94@gmail.com> | Thu Jan 08 14:42:23 2015 +0100 |
| tree | b339e08f092bd5effbce01887f89a4b7ebda9217 | |
| parent | 7ceebc8f4790ed48ab238007204ba62e975a6668 [diff] |
(pouchdb/express-pouchdb#164) - adds SERVER=express-pouchdb-minimum Adds support for the SERVER=express-pouchdb-minimum environment variable in the test code. The resulting server uses express-pouchdb in ``minimumForPouchDB`` mode. The implementation is very much like pouchdb-express-router's.
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');