Skip to content

Instantly share code, notes, and snippets.

@not-for-me
Forked from mshick/install.sh
Created February 24, 2017 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save not-for-me/aa97e0cca7796513b80a9f64cb7d7790 to your computer and use it in GitHub Desktop.
Save not-for-me/aa97e0cca7796513b80a9f64cb7d7790 to your computer and use it in GitHub Desktop.
Installing Node.js with Homebrew and nvm
# Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install nvm
brew install nvm
# Export nvm environment
export NVM_DIR="$HOME/.nvm"
. "$(brew --prefix nvm)/nvm.sh"
# Install latest Node.js
nvm install stable && nvm use stable
# Save your nvm env loading into your .bash_profile or similar
if [[ $(brew ls --versions nvm) ]]
then
export NVM_DIR="$HOME/.nvm"
. "$(brew --prefix nvm)/nvm.sh"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment