| commit | 19e043317882594b0a3cc6f3f52ae1f33417a24b | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Thu May 14 08:42:16 2015 -0400 |
| committer | Nolan Lawson <nolan.lawson@gmail.com> | Thu May 14 08:42:19 2015 -0400 |
| tree | 4e8d9f634ad131f2fae8e4f596820411e86bd671 | |
| parent | 8df1beaa7cda5c5327ec041fd3ec391fa7365406 [diff] |
(#3845) - add xmlns:gap to cordova config As pointed out by @brodybits in https://github.com/litehelpers/Cordova-sqlite-storage/issues/255. To be honest, I don't even know how it was passing in Blackberry when I added this. It's not valid XML without this fix.
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');