Created
February 16, 2014 19:59
-
-
Save tisto/9039761 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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