Skip to content

Instantly share code, notes, and snippets.

@DevanB
Last active January 30, 2018 02:40
Show Gist options
  • Save DevanB/13746fc4b9d89f5677278ead9dd0df02 to your computer and use it in GitHub Desktop.
Save DevanB/13746fc4b9d89f5677278ead9dd0df02 to your computer and use it in GitHub Desktop.
Setup

Install Homebrew

  1. Open Terminal.app
  2. Execute /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Install Node (through NVM)

  1. In Terminal.app execute touch ~/.bash_profile
  2. Execute curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
  3. After it has completed installing, restart Terminal.app
  4. Execute nvm, if you a bunch of text about node version manager then...
  5. Execute nvm install node
  6. Execute nvm alias default node

If you see nvm: command not found

  1. Execute vi ~/.bash_profile
  2. Press GG (yes, two captial Gs in a row)
  3. Press i, then type source ~/.bashrc
  4. Press ZZ (yes, two captial Zs in a row), this will close the editor
  5. Restart the Terminal.app
  6. Execute nvm install node
  7. Execute nvm alias default node

Install various packages and applications

  1. Execute brew install trash git tree
  2. Execute brew cask install visual-studio-code firefox-developer-edition
  3. Execute npm i -g yarn create-react-app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment