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
#!bin/bash | |
# JumpStart NodeJS on Ubuntu - installs NodeJS. Copy the following line and run! | |
# wget https://raw.github.com/gist/3472910/jumpstart-node.sh && sudo chmod +x jumpstart-node.sh && sudo ./jumpstart-node.sh | |
sudo apt-get update | |
sudo apt-get install make g++ python git libssl-dev | |
git clone git://github.com/joyent/node.git | |
cd node | |
git checkout v0.10.26 | |
./configure |