Skip to content

Instantly share code, notes, and snippets.

@cookie-ag
Created November 16, 2017 13:45
Show Gist options
  • Save cookie-ag/cb4301e066bb807e5579c1e278c7b0e4 to your computer and use it in GitHub Desktop.
Save cookie-ag/cb4301e066bb807e5579c1e278c7b0e4 to your computer and use it in GitHub Desktop.
Install / Uninstall Node on OSX
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | sudo bash
nvm install node
nvm run node --version
brew uninstall node;
# or `brew uninstall --force node` which removes all versions
brew prune;
rm -f /usr/local/bin/npm /usr/local/lib/dtrace/node.d;
rm -rf ~/.npm;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment