August 2016
Intermediate to advanced
376 pages
6h 33m
English
Sequelize-cli is a very useful command-line interface for creating models, configurations and migration files to databases. It's integrated with Sequelize middleware and operates with many relational databases such as PostgreSQL, MySQL, MSSQL, Sqlite.
You can find more information about Sequelize middleware implementation at: http://docs.sequelizejs.com/en/latest/ and full documentation of Sequelize-Cli at: https://github.com/sequelize/cli.
npm install -g sequelize-cli
sequelize with the following command:
npm install sequelize -save
Remember we always use the -save flag to add the module to our package.json file.
.sequelizerc on the root ...Read now
Unlock full access