How do I install the sequelize.js binary?

前端 未结 3 1390
一整个雨季
一整个雨季 2021-01-18 02:14

I am referencing the sequelize.js documentation at: http://sequelizejs.com/documentation#migrations-the-binary

After running \'sequelize -V\', I receive:

<         


        
3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-18 02:40

    After installing sequelize.js via

    npm install sequelize
    

    The sequelize binary will be located in your node_modules/sequelize/bin folder. The sequelize binary can be accessed directly or by adding this folder to your environment.

    Try "./your/path/node_modules/sequelize/bin/sequlize -V" to verify.

提交回复
热议问题