Socket
Socket
Sign inDemoInstall

modella-pouchdb

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

modella-pouchdb

pouchdb adaptor for modella


Version published
Weekly downloads
5
Maintainers
1
Weekly downloads
 
Created
Source

Modella-PouchDB

Build Status

PouchDB plugin for modella.

Installation

Component:

component install staygrimm/modella-pouchdb

npm:

npm install modella-pouchdb

Example

var model = require('modella');
var pouch = require('modella-pouchdb');
var PouchDB = require('pouchdb');

var UserDB = new PouchDB('Users');

var User = model('User')
  .attr('_id')
  .attr('name')
  .attr('email');

User.use(pouch(UserDB));

/**
 * Initialize
 */

var user = new User;

user.
	._id(new Date().toISOString())
    .name('foo')
    .email('foo@gmail.com');

user.save(function(err) {
  // do something
});

API

Pouch(instance)

Initialize adaptor with a PouchDB instance.

Model.all(callback)

Get all models (static method)

Model.find(id, callback)

Find a model (static method)

Model.createDesignDoc(name, mapFunction, callback)

Create a design document and store it in PouchDB instance

Model.query(name, options, callback)

Query view named name, with PouchDB options, returning callback with an error or array of result docs

model.save([options], callback)

Save the model (instance method)

model.remove([options], callback)

Remove the model (instance method)

Caveats

modella-pouchdb attaches a _rev attribute to every model. This attribute is used and managed by the adaptor when updating documents in the database. Note that if you modify this attribute on your models you will most likely encounter errors.

Test

npm install && make test

License

MIT

FAQs

Package last updated on 19 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc