Skip to content

Instantly share code, notes, and snippets.

@omar2205
Created October 6, 2020 09:18
Show Gist options
  • Save omar2205/e4abd6451ce5eaa64a08cb966a8a4bba to your computer and use it in GitHub Desktop.
Save omar2205/e4abd6451ce5eaa64a08cb966a8a4bba to your computer and use it in GitHub Desktop.
Quick nodejs install script
#!/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