https://pouchdb.com/ GitHub PouchDB * Blog * Guides * API * Learn * Download v9.0.0 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: 69 }); db.changes().on('change', function() { console.log('Ch-Ch-Changes'); }); db.replicate.to('http://example.com/mydb'); [node] Cross Browser Works in Firefox, Chrome, Opera, Safari, IE and Node.js [light] Lightweight PouchDB is just a script tag and 46KB (gzipped) away in the browser, or $ npm install pouchdb away in Node. [learn] Easy to Learn Requires some programming knowledge, however PouchDB is a piece of cake to learn. [open] Open Source Everything is developed out in the open on GitHub, contributors always welcome! Latest PouchDB 9.0.0 Alba Herrerias By: Alba Herrerias Published: 24 May 2024 The PouchDB developers are delighted to announce the immediate availability of PouchDB 9.0.0. This is a major release with 202 PRs merged since the last version. [...] PouchDB 8.0.1 Alba Herrerias By: Alba Herrerias Published: 09 February 2023 The first release of the year! This is a patch release, it fixes a bug we introduced during a refactor made in the last release and sets Node 14 in [...] View more PouchDB's Twitter Node Levelup PouchDB's Github Repo CouchDB Learn * Getting Started * API Guide * Wiki Discuss * Mailing List * IRC (web) * Twitter * StackOverflow Contribute * Contributing * Source * Issues * Apache License Content updated, reload now? ^