Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 935 Bytes

readme.md

File metadata and controls

40 lines (28 loc) · 935 Bytes

Elefrant ORM

wercker status

Dependency Status

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