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 more
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');

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

PouchDB 5.0.0 - Five years of PouchDB

Nolan Lawson

By: Nolan Lawson
Published: 05 October 2015
Fitting with the fact that PouchDB turned five years old this year, we're proud to announce PouchDB 5.0.0. This release contains the usual number of bugfixes and improvements, as well [...]

PouchDB 4.0.2 - A Little Extra

Nolan Lawson

By: Nolan Lawson
Published: 12 September 2015
4.0.2 is a quick update to sneak in some important bugfixes in anticipation of the next monthly release. [...]

View more