| commit | e22e02da09fb0a419c41f11c0150329d13872e71 | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Thu Jun 04 00:06:11 2015 -0400 |
| committer | Nolan Lawson <nolan.lawson@gmail.com> | Thu Jun 04 00:06:13 2015 -0400 |
| tree | 10a82eabae8c4130ee6151fb95d9cd3dea2fe017 | |
| parent | 91756fc5cf4bd76bec8634d24a14e6b07a1b6858 [diff] |
(#3925) - more refactoring * use camelCase for inner modules, ala lodash * rename stuff to `index.js` where it makes sense
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');