Reputation: 3
I have installed sails.js v0.11.0, but I need to downgrade it to v0.10.5 cause a company I'm working for used sails.js v0.10.5 for some codes. Does anyone know how I can do that?
Upvotes: 0
Views: 1843
Reputation: 582
You should be good to go now
Upvotes: 0
Reputation: 1082
npm uninstall -g sails
npm install -g [email protected]
On Unix/MacOS you may need sudo
Upvotes: 1