modella-memory
v0.3.0
Published
Memory persistence layer for Modella. Useful for development or as a reference implementation for Modella storage plugins.
Downloads
1
Readme
modella-memory
Memory persistence layer for Modella. Useful for development or as a reference implementation for Modella storage plugins.
Installation
npm install modella-memory
Example
var modella = require('modella');
var memory = require('modella-memory');
var User = modella('User');
User.use(memory());
API
Model.find(id, fn(err, model))
Find model with given id
.
Model.all(fn(err, collection))
Find all models.