Skip to content

Instantly share code, notes, and snippets.

@renatocarvalho
Last active May 18, 2018 23:22
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save renatocarvalho/45041c1b32442259df8e to your computer and use it in GitHub Desktop.
Save renatocarvalho/45041c1b32442259df8e to your computer and use it in GitHub Desktop.
Install Node with Homebrew on OS X, also NPM and Bower
brew doctor
brew update
brew install node
curl https://www.npmjs.org/install.sh | sh
export NODE_PATH="/usr/local/lib/node"
export PATH="/usr/local/share/npm/bin:$PATH"
echo $PATH
npm install -g bower
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment