This file contains 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 git | |
sudo apt-get --yes install g++ curl libssl-dev apache2-utils | |
sudo apt-get --yes install git-core | |
# download the Node source, compile and install it | |
git clone https://github.com/joyent/node.git ~/node | |
cd ~/node | |
./configure | |
make | |
sudo make install | |
# install the Node package manager for later use |