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
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" |
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
{ | |
"year": 2020, | |
"month": 4, | |
"day": 11 | |
} |
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
{ | |
content: { | |
guessed: [], | |
mistake: 0 | |
} | |
} |