Last active
May 31, 2016 20:49
-
-
Save gferrin/ecd12d9eb1c60b12725c to your computer and use it in GitHub Desktop.
Install all necessary dependencies for node.js applications on Ubuntu
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
| 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 | sudo bash - | |
| sudo apt-get install -y nodejs | |
| # install git | |
| sudo apt-get install git | |
| # install make | |
| sudo apt-get install build-essential |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment