Created
November 26, 2016 01:00
-
-
Save serverhiccups/507d647e46b27bb20274331202b5beb5 to your computer and use it in GitHub Desktop.
Install node on my button
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
if [ ! -f /installed.txt ]; then | |
curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash - | |
apt-get install -y nodejs npm | |
npm install -g scratchapi | |
cd /root | |
npm init -y | |
touch /installed.txt | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment