| commit | 23747c9dd947cf798838b8beb7592259f1561e47 | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Tue Apr 21 09:23:20 2015 -0400 |
| committer | Nolan Lawson <nolan.lawson@gmail.com> | Fri May 01 08:44:58 2015 -0400 |
| tree | 2b2212fd66655b343fa82867e4acf09eca19f0ea | |
| parent | 649e5ee9a5597597e1ad00b9c8e7605bc5f2da25 [diff] |
(#3754) - fix cordova tests We still don't have automated Appium tests, but this at least fixes the Cordova tests so that they're running again. I can confirm that I can run the tests on both Android and iOS simulators, with and without the SQLite Plugin. It also runs in FirefoxOS.
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');