Component:
component install staygrimm/modella-pouchdb
npm:
npm install modella-pouchdb
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('[email protected]');
user.save(function(err) {
// do something
});
Initialize adaptor with a PouchDB instance.
Get all models (static method)
Find a model (static method)
Create a design document and store it in PouchDB instance
Query view named name
, with PouchDB options
, returning callback
with an error
or array of result docs
Save the model (instance method)
Remove the model (instance method)
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.
npm install && make test
MIT