Reputation: 219
I am unable to install sequelize
using npm. When I am trying getting following error. I am using node version v5.4.1
and npm version 3.3.12
.
can anyone help me.
Thanks
Upvotes: 1
Views: 2174
Reputation: 115
https://www.npmjs.com/package/sequelize
Hopefully the procedure on the link will help you installing sequelize
Or try this
$ npm install --save sequelize
And one of the following: $ npm install --save pg pg-hstore $ npm install --save mysql // For both mysql and mariadb dialects $ npm
install --save sqlite3 $ npm install --save tedious // MSSQL
Upvotes: 0
Reputation: 769
it is duplicate
Your module name contains sequelize
key word and you should change it in package.json
Upvotes: 2