elefrant-orm
v0.2.3
Published
ORM connections between waterline and Elefrant Framework.
Downloads
3
Maintainers
Readme
Elefrant ORM
Install
$ npm install --save elefrant-orm
Usage
Elefrant orm connect Waterline ORM with Elefrant Framework
var orm = require('elefrant-orm');
var options = {
adapters: {/* .. Adapter .. */},
connections: {/* .. Connections .. */},
collections: {/* .. Collections .. */},
};
orm(options, function (err, models) {
if (err) {
console.log(err);
} else {
// Get models
// models.connections & models.collections
console.log(models);
}
});
License
MIT © Elefrant