How do I install the sequelize.js binary?

node.js, sequelize.js

Solution

The CLI has moved to `sequelize-cli`:

npm install -g sequelize-cli

https://github.com/sequelize/cli

Problem

I am referencing the sequelize.js documentation at: http://sequelizejs.com/documentation#migrations-the-binary After running 'sequelize -V', I receive: ``` $ sequelize -V sequelize: command not found ``` I have searched online and cannot find any references on how to install the binary

Original source

Related problems