7.0.1 • Published 2 years ago

@guarda-co/pouchdb-node v7.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

pouchdb-node

PouchDB, the Node-only edition. A preset representing the PouchDB code that runs in Node.js, without any of the code required to run it in the browser.

The pouchdb-node preset contains the version of PouchDB that is designed for Node.js. In particular, it uses the LevelDB adapter and doesn't ship with the IndexedDB or WebSQL adapters. It also contains the replication, HTTP, and map/reduce plugins.

Use this preset if you are only using PouchDB in Node, and not in the browser.

Usage

npm install pouchdb-node
var PouchDB = require('pouchdb-node');
var db = new PouchDB('mydb');

For full API documentation and guides on PouchDB, see PouchDB.com. For details on PouchDB sub-packages, see the Custom Builds documentation.

Source

PouchDB and its sub-packages are distributed as a monorepo.

For a full list of packages, see the GitHub source.