Last active
August 29, 2015 13:57
-
-
Save doole/9616691 to your computer and use it in GitHub Desktop.
Node.js and npm installation on Mac OS X Mavericks/Yosemite.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bower | |
coffeelint | |
csslint | |
grunt | |
gulp | |
jshint | |
npm | |
uglify-js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update homebrew formulas | |
brew update | |
# Install node wihtout npm | |
brew install node --without-npm | |
# Install npm direclty | |
curl -L https://npmjs.org/install.sh | sh | |
# Update only npm | |
npm install -g npm@latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment