Last active
February 28, 2018 12:00
-
-
Save ayinlaaji/d29439027f627a0f2393bbb4bbe4d348 to your computer and use it in GitHub Desktop.
Setup nodejs linux 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
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get install -y wget git | |
wget -qO- https://deb.nodesource.com/setup_8.x | sudo bash - | |
sudo apt-get install -y nodejs build-essential | |
sudo npm install -g nodemon yarn pm2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do
wget -qO- https://gist.githubusercontent.com/ayinlaaji/d29439027f627a0f2393bbb4bbe4d348/raw/b117308a6f3bcea2e93737f732e525ec5f609832/node.sh | bash