seneca-orientdb-store
v0.1.4
Published
Seneca data store plugin for OrientDB
Downloads
8
Maintainers
Readme
seneca-orientdb-store
(Cloned from seneca-postgresql-store), seneca-orientdb-store is a [OrientDB][orientdborg] database plugin for the Seneca MVP toolkit. The plugin is using the [OrientJS][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')
...
})
...