Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/janl/pouchdb
:koala: - PouchDB is a pocket-sized database.
https://github.com/janl/pouchdb
Last synced: 3 months ago
JSON representation
:koala: - PouchDB is a pocket-sized database.
- Host: GitHub
- URL: https://github.com/janl/pouchdb
- Owner: janl
- License: apache-2.0
- Fork: true (pouchdb/pouchdb)
- Created: 2015-03-25T14:01:47.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-05-25T14:20:52.000Z (over 7 years ago)
- Last Synced: 2024-04-14T22:54:24.044Z (9 months ago)
- Language: JavaScript
- Homepage: http://pouchdb.com/
- Size: 130 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[PouchDB](http://pouchdb.com/) - The Javascript Database that Syncs
==================================================[![Build Status](https://travis-ci.org/pouchdb/pouchdb.svg)](https://travis-ci.org/pouchdb/pouchdb)
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](https://github.com/daleharvey/pouchdb/graphs/contributors) and inspired by Apache CouchDB.
Using PouchDB
-------------To get started using PouchDB check out our [Documentation](http://pouchdb.com/learn.html) and the [API Documentation](http://pouchdb.com/api.html).
Contributors
------------
If you want to get involved then check out the [contributing guide](https://github.com/daleharvey/pouchdb/blob/master/CONTRIBUTING.md)Example
-------```javascript
var db = new PouchDB('dbname');db.put({
_id: '[email protected]',
name: 'David',
age: 68
});db.changes().on('change', function() {
console.log('Ch-Ch-Changes');
});db.replicate.to('http://example.com/mydb');
```