By: Will Holley
Published: 13 July 2017
I'm happy to announce the release of PouchDB 6.3.0, bringing in a number of important features and fixes. For a full changelog from 6.2.0 to 6.3.0 please see the releases
[...]
The Database that Syncs!
PouchDB is an open-source JavaScript database inspired by Apache CouchDB that is designed to run well within the browser.
PouchDB was created to help web developers build applications that work as well offline as they do online.
It enables applications to store data locally while offline, then synchronize it with CouchDB and compatible servers when the application is back online, keeping the user's data in sync no matter where they next login.
Learn morevar db = new PouchDB('dbname');
db.put({
_id: '[email protected]',
name: 'David',
age: 69
});
db.changes().on('change', function() {
console.log('Ch-Ch-Changes');
});
db.replicate.to('http://example.com/mydb');Cross Browser
Works in Firefox, Chrome, Opera, Safari, IE and Node.js
Lightweight
PouchDB is just a script tag and 46KB (gzipped) away in the browser, or $ npm install pouchdb away
in Node.
Easy to Learn
Requires some programming knowledge, however PouchDB is a piece of cake to learn.
Open Source
Everything is developed out in the open on Github, contributors always welcome!
Latest
By: Garren Smith
Published: 20 April 2017
We have another PouchDB release. For a full changelog from 6.1.1 to 6.2.0, please see the releases page, I've summarised some of the new features and fixes below:
[...]