Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

pouchdb-memory

nolanlawson394Apache-2.06.0.0

A purely in-memory PouchDB, as a custom build

pouchdb, memory

readme

pouchdb-memory

A purely in-memory PouchDB, as a custom build. Useful for things like quick unit tests, where you don't want to write any data to disk.

Install

npm install pouchdb-memory

Usage

var PouchDB = require('pouchdb-memory');
var db = new PouchDB('mydb');

Description

This build combines the following plugins:

  • pouchdb-adapter-memory
  • pouchdb-adapter-http
  • pouchdb-mapreduce
  • pouchdb-replication
  • pouchdb-find

Feel free to add additional plugins on top of it, or just build your own – the source code is tiny!