| commit | 90b5ee8f5d110d9d337e32aa2e8397c7dcf0d065 | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Wed Jun 03 00:19:09 2015 -0400 |
| committer | Nolan Lawson <nolan.lawson@gmail.com> | Wed Jun 03 00:22:20 2015 -0400 |
| tree | 31632d9b6cf9478dd5fd0c8756cb7ba0394c177d | |
| parent | 1f24d8ba81a532399e9774656e17de55ad13fa0f [diff] |
(#3922) - move more stuff out of utils Feels cleaner when everything is separate files, rather than having them all inside one big `utils.js`.
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');