Skip to content

Instantly share code, notes, and snippets.

@tisto
Created February 16, 2014 19:59
Show Gist options
  • Save tisto/9039761 to your computer and use it in GitHub Desktop.
Save tisto/9039761 to your computer and use it in GitHub Desktop.
# Install Node 0.8.9
wget http://nodejs.org/dist/v0.8.9/node-v0.8.9.tar.gz
tar xfvz node-v0.8.9.tar.gz
cd node-v0.8.9/
./configure
make
make install
npm config set registry http://registry.npmjs.org/
# Install linters globally
npm install -g jslint
npm install -g jshint
npm install -g csslint
# Problem: npm ERR! Error: tunneling socket could not be established, cause=connect ETIMEDOUT
# Solution: https://github.com/npm/npm/issues/2472
http_proxy=http://172.16.1.5:80
https_proxy=http://172.16.1.5:80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment