I have a problem on npm installation
I have created a project say project A
cd ~/projectA npm install sails
but sails command is not fo
Possible workaround with NPM 5.2+ using the npx command.
npx
npx sails new test-project
See this question for a similar use case and elegant solutions.