Skip to content

Instantly share code, notes, and snippets.

@svallory
Created April 27, 2017 11:14
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 svallory/a02ab015157673317fda70bb0d20a65e to your computer and use it in GitHub Desktop.
Save svallory/a02ab015157673317fda70bb0d20a65e to your computer and use it in GitHub Desktop.
Updates ubuntu with nodejs 6 and yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get update && sudo apt-get install -y nodejs yarn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment