I am referencing the sequelize.js documentation at: http://sequelizejs.com/documentation#migrations-the-binary
After running \'sequelize -V\', I receive:
<
The CLI has moved to sequelize-cli
:
npm install -g sequelize-cli
https://github.com/sequelize/cli
If you install locally, there are links to binaries at ./node_modules/.bin
. This path applies to all your local binaries, and you can output this on your CLI with npm bin
.
You can also do ls -laF node_modules/.bin
to view where the links point to.
See this stack question for more
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.