Last active
August 2, 2020 14:59
-
-
Save leoboyerbx/57a3a762126d52a7da828f0842d645fa to your computer and use it in GitHub Desktop.
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
echo "=== Script for installing latest node and Yarn in seconds 🚀️ === " | |
echo "⬆️ Updating repos..." | |
sudo apt update | |
echo "📦️ Installing repo version of npm..." | |
sudo apt install npm -y | |
echo "🔢️ Installing n version manager..." | |
sudo npm i -g n | |
echo "📥️ Installing latest node version..." | |
sudo n latest | |
PATH="$PATH" | |
echo "🐈️ Installing Yarn..." | |
sudo npm i -g yarn | |
echo "" | |
echo "✔️ Done !" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment