@rappopo/dab-pouch

0.6.8 • Public • Published

@rappopo/dab-pouch

A Rappopo DAB implementation for PouchDB.

Installation

Simply invoke this command in your project folder:

$ npm install --save @rappopo/dab-pouch

And within your script:

const DabPouch = require('@rappopo/dab-pouch')
const dab = new DabPouch({
  path: '/home/me/pouchdb'
})
// prepare collections
dab.createCollection({ name: 'test' })
  .then(result => {
    return dab.bulkCreate(data, { collection: 'test' })
  })
...
// lets dab!
dab.findOne('my-doc', 'test').then(function(doc) { ... })

Options

path: the path where all PouchDB folder will be saved and reside. If it not provided, it'll defaults to /tmp

retainOnRemove: array of columns to retain when a document is deleted. Default: [].

When PouchDB delete a document, it actually PUTs a document with content like this:

{
  "_id": "<doc_id>",
  "_rev": "<rev_id>",
  "_deleted": true
}

But sometimes you want to also have some columns to be put on that deleted document. The retainOnRemove simply left those columns intact, e.g:

{
  "_id": "<doc_id>",
  "_rev": "<rev_id>",
  "_deleted": true,
  "type": "<mytype>"
}

Features

Donation

  • Donate
  • Bitcoin 16HVCkdaNMvw3YdBYGHbtt3K5bmpRmH74Y

License

MIT

Dependencies (3)

Dev Dependencies (5)

Package Sidebar

Install

npm i @rappopo/dab-pouch

Weekly Downloads

0

Version

0.6.8

License

MIT

Unpacked Size

56.1 kB

Total Files

22

Last publish

Collaborators

  • rappopo