A MongoDB engine for resourceful, a datamapper part of the flatiron project.
Ryan Fitzgerald, Follow @TheRyanFitz on Twitter.
This project is in a very early stage, with limited functionality. Don't use in production.
var resourceful = require('resourceful');
require('resourceful-mongo');
var Person = resourceful.define('person', function () {
//
// Specify use of the mongodb engine
//
this.use('mongodb', {
collection: "people", // required - the collection to use for this resource
safe : true // optional - run the driver in safe mode to ensure that the update succeeded. Defaults to false
});
this.string('name');
this.number('age');
});
$ curl http://npmjs.org/install.sh | sh
$ [sudo] npm install resourceful-mongo
All tests are written with mocha and should be run with npm:
$ npm test