UNPKG

750 BMarkdownView Raw
1pouchdb
2======
3
4PouchDB is a pocket-sized database.
5
6### Usage
7
8```bash
9npm install pouchdb
10```
11
12```js
13var PouchDB = require('pouchdb');
14var db = new PouchDB('my_db');
15```
16
17For full API documentation and guides on PouchDB, see [PouchDB.com](http://pouchdb.com/).
18
19This is the full, batteries-included `pouchdb` package containing code that is designed for both the Browser and Node.js. For details on PouchDB sub-packages, see the [Custom Builds documentation](http://pouchdb.com/custom.html).
20
21### Source
22
23PouchDB and its sub-packages are distributed as a [monorepo](https://github.com/babel/babel/blob/master/doc/design/monorepo.md).
24
25For a full list of packages, see [the GitHub source](https://github.com/pouchdb/pouchdb/tree/master/packages).
26
27