Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 778 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 778 Bytes

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