Created
October 6, 2020 09:18
-
-
Save omar2205/e4abd6451ce5eaa64a08cb966a8a4bba to your computer and use it in GitHub Desktop.
Quick nodejs install script
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
#!/usr/bin/bash | |
# Quick script to install node (v14) | |
# - oskr | |
echo "\tWelcome to Node Install script\n\n" | |
set -o xtrace | |
wget "https://deb.nodesource.com/setup_14.x" -O setup_14x.sh | |
chmod +x setup_14x.sh | |
sudo ./setup_14x.sh | |
sudo apt install nodejs -y | |
clear | |
node -v | |
npm -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment