Skip to content

Instantly share code, notes, and snippets.

@nestoru
Created April 30, 2015 19:10
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 nestoru/048ecf03cc3323f5091f to your computer and use it in GitHub Desktop.
Save nestoru/048ecf03cc3323f5091f to your computer and use it in GitHub Desktop.
fastest idempotent ubuntu nodejs install
# for some reason npm does not get installed until removing and reinstalling node
add-apt-repository -y ppa:chris-lea/node.js \
&& apt-get update \
&& apt-get install -y nodejs=$version* \
&& apt-get remove -y nodejs \
&& apt-get install -y nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment