Skip to content

Instantly share code, notes, and snippets.

@cs3b
Created August 20, 2017 21:57
Show Gist options
  • Save cs3b/18f4f77bcc5410042495fb6076fdad35 to your computer and use it in GitHub Desktop.
Save cs3b/18f4f77bcc5410042495fb6076fdad35 to your computer and use it in GitHub Desktop.
Node env setup

Node env Setup

Install Git

On MacOS you can use brew, on Ubuntu you can use apt-get

https://git-scm.com/downloads

Install Node

Use nvm - node version manager (MacOS, Ubuntu) nvm install 8.4.0

Or install from offial webpage

Install Watchman

https://facebook.github.io/watchman/docs/install.html

Install Heroku CLI

https://devcenter.heroku.com/articles/heroku-cli

Install Yarn

> npm install -g yarn

Install Visual Studio Code

or any other decent editor

https://code.visualstudio.com/download

TEST

node -v
# v8.4.0 
watchman --version
# 4.7.0
yarn --version
# yarn version v0.27.5
git --version
# git version 2.14.1
code --version
# 1.15.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment