Skip to content

mattdaly/node-ravendb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A node.js client for Raven DB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published