node-ravendb
node-ravendb copied to clipboard
A node.js client for Raven DB
node-ravendb
A node.js javascript client for Raven DB.
Installation
Not currently available on npm.
Documentation
Detailed documentation and examples can be found on the node-ravendb wiki pages. A thorough example application is forthcoming.
Sample Usage
var raven = require('./node-ravendb');
var store = new raven.Store({ host: '1.1.1.1', port: 1234, database: 'Foo' }).initialize();
var session = store.openSession();
session.load('dogs/max', function (err, max) {
if (!err) {
max.age = 13;
session.save();
}
});
Contributors
Matt Daly http://github.com/mattdaly xzachtli http://github.com/xzachtli