0.1.4 • Published 9 years ago

seneca-orientdb-store v0.1.4

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

seneca-orientdb-store

Build Status (Cloned from seneca-postgresql-store), seneca-orientdb-store is a OrientDB database plugin for the Seneca MVP toolkit. The plugin is using the OrientJS driver.

Usage:

var seneca = require('seneca');
var store = require('seneca-orientdb-store');

var config = {}
var storeopts = {
  name:'dbname',
  host:'127.0.0.1',
  port:2424,
  username:'user',
  password:'password'
};

...

var si = seneca(config)
si.use(store, storeopts)
si.ready(function() {
  var product = si.make('product')
  ...
})
...