Skip to content

Instantly share code, notes, and snippets.

@pinalbhatt
Created February 6, 2021 10:24
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 pinalbhatt/575249738f2080c3d2ec7bc723fe3280 to your computer and use it in GitHub Desktop.
Save pinalbhatt/575249738f2080c3d2ec7bc723fe3280 to your computer and use it in GitHub Desktop.
Node Setup on Mac
brew install node
mkdir "${HOME}/.npm-packages"
echo NPM_PACKAGES="${HOME}/.npm-packages" >> ${HOME}/.bashrc
echo prefix=${HOME}/.npm-packages >> ${HOME}/.npmrc
echo NODE_PATH=\"\$NPM_PACKAGES/lib/node_modules:\$NODE_PATH\" >> ${HOME}/.bashrc
echo PATH=\"\$NPM_PACKAGES/bin:\$PATH\" >> ${HOME}/.bashrc
echo source "~/.bashrc" >> ${HOME}/.bash_profile
source ~/.bashrc
npm i -g n
npm i -g npm-check-updates
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment