| commit | d4d55b18cbeaa3923c15aa934a04d5ed0221cc93 | [log] [tgz] |
|---|---|---|
| author | Nolan Lawson <nolan.lawson@gmail.com> | Fri Apr 10 09:36:33 2015 -0400 |
| committer | Nolan Lawson <nolan.lawson@gmail.com> | Fri Apr 10 10:34:25 2015 -0400 |
| tree | 14ace42757ffca109e2fe66792e0e72fb6f37116 | |
| parent | 4355f3404d73a905ddd496f03630da4b8a373c05 [diff] |
(#3723) - add a "who's using" page I think this is one of the first questions people ask themselves when they're evaluating a piece of software, so it's important for us to market ourselves. The images were scaled down a bit to fit well on the page. Feel free to tinker if you think it needs it @nickcolley. Also we should definitely tweet and ask people to submit their projects. I already emailed Chilean fishing boat folks to see if we could get a statement from them. :)
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');