Skip to content

Instantly share code, notes, and snippets.

@leoboyerbx
Last active August 2, 2020 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leoboyerbx/57a3a762126d52a7da828f0842d645fa to your computer and use it in GitHub Desktop.
Save leoboyerbx/57a3a762126d52a7da828f0842d645fa to your computer and use it in GitHub Desktop.
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