Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Created May 13, 2018 10:10
Show Gist options
  • Save GitHub30/b6c58a01f5c8caea431c9efdb29f0ed8 to your computer and use it in GitHub Desktop.
Save GitHub30/b6c58a01f5c8caea431c9efdb29f0ed8 to your computer and use it in GitHub Desktop.
set -x \
&& curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - \
&& sudo apt-get install -y nodejs \
&& sudo apt-get install gcc g++ make \
&& curl -sL 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 \
&& sudo apt-get update \
&& sudo apt-get install -y yarn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment