A node.js javascript client for Raven DB.
Not currently available on npm.
Detailed documentation and examples can be found on the node-ravendb wiki pages. A thorough example application is forthcoming.
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();
}
});
Matt Daly http://github.com/mattdaly xzachtli http://github.com/xzachtli