By: Calvin Metcalf
Published: 12 August 2014
PouchDB 3.0.0 is finally released! It's faster, it's more stable, it's easier to debug, it doesn't freeze the DOM and it spontaneously generates kittens.
[...]
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: 'dave@gmail.com',
name: 'David',
age: 67
});
db.changes().on('change', function() {
console.log('Ch-Ch-Changes');
});
db.replicate.to('http://example.com/mydb');
Works in Firefox, Chrome, Opera, Safari, IE and Node.js
PouchDB is just a script tag and 34KB (gzipped) away in the browser, or $ npm install pouchdb
away
in Node.
Requires some programming knowledge, however PouchDB is a piece of cake to learn.
Everything is developed out in the open on Github, contributors always welcome!
By: Calvin Metcalf
Published: 12 August 2014
PouchDB 3.0.0 is finally released! It's faster, it's more stable, it's easier to debug, it doesn't freeze the DOM and it spontaneously generates kittens.
[...]
By: Nolan Lawson
Published: 25 July 2014
You might not have noticed it, but PouchDB underwent a quiet revolution over the past few months. The catalyzing moment was the LevelUP proposal posted by Nick Thompson back in
[...]