Skip to content

Instantly share code, notes, and snippets.

@FintanK
Last active June 18, 2017 07:34
Show Gist options
  • Save FintanK/96db30b29f6e6bc7d654fe9e1eee0f1b to your computer and use it in GitHub Desktop.
Save FintanK/96db30b29f6e6bc7d654fe9e1eee0f1b to your computer and use it in GitHub Desktop.
Install specific versions of Node.js with NVM
NVM
Install NVM
> curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
> export NVM_DIR="$HOME/.nvm"
> [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
> command -v nvm # verifies install
> nvm install node
> nvm run node v1.2.3
https://github.com/creationix/nvm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment