0.3.0 • Published 10 years ago

modella-memory v0.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

modella-memory

Build Status

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.

MIT Licensed