| commit | 3c6817213632669a1341c2e79357757b8903439d | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Thu Sep 18 00:11:57 2014 -0400 |
| committer | Dale Harvey <dale@arandomurl.com> | Thu Sep 18 11:31:35 2014 +0200 |
| tree | 88c2de3a91b92f467007554f999c7a12298bf8e5 | |
| parent | 80c94da4e1848db887d056d2d48e3cd4fe885fc7 [diff] |
(#2773) - attachments work after Chrome 37-38 upgrade
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');