Last active
July 9, 2016 17:10
-
-
Save agreen757/ef86c7afd46ad7fef052 to your computer and use it in GitHub Desktop.
setup node server
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
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927 | |
echo "deb http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get install -y python-software-properties python g++ make | |
sudo apt-get install -y curl | |
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh | |
sudo apt-get install -y emacs23 | |
sudo apt-get install -y git | |
sudo apt-get install -y mongodb-org |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment