@booljs/sequelize
v0.2.4
Published
Sequelize driver for BoolJS
Downloads
19
Readme
@booljs/sequelize is a database loader intended to enable developers to use Sequelize in the BoolJS Framework.
Install
Install the package using
npm install @booljs/sequelizeBoolJS Sequelize uses some peerDependencies you must have in your project. We encourage using npm 6+ in all your projects, because is strict in making you declare them in your project.
npm install sequelize@latestFinally, you might need to get some documentation on the usage of Sequelize. Find it on their website.
Usage
First, register the @booljs/sequelize module in your BoolJS application. Then, add it to the database drivers
In index.js, declare:
const Bool = require('booljs');
async function main () {
const API = new Bool('com.example.api', [ '@booljs/sequelize' ]);
.setDatabaseDrivers('booljs.sequelize');
return API.run();
}
module.exports = main();