Last active
August 29, 2015 14:21
-
-
Save ubergoober/59ee38c4fa37fe470299 to your computer and use it in GitHub Desktop.
Simple nodejs updating on Mac
This file contains hidden or 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
| #clear you npm cache | |
| sudo npm cache clean -f | |
| #install "n" (this might take a while) | |
| sudo npm install -g n | |
| #upgrade to lastest version | |
| sudo n stable | |
| #set ownership on ~/.npm directory | |
| sudo chown -R $(whoami) ~/.npm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment