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
TLDR; | |
sudo apt-get update; curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -; sudo apt-get install -y nodejs; sudo apt-get install -y git; sudo apt-get install -y build-essential; sudo npm install -g forever coffee-script; | |
When launching a new ubuntu instance to run node.js applications perform the following steps. | |
sudo apt-get update | |
# install nodejs | |
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash - | |
sudo apt-get install -y nodejs |