Last active
November 21, 2019 13:03
-
-
Save linuxfemale/74ef2047b2800ee0c75ec10486ea9395 to your computer and use it in GitHub Desktop.
Node.js v10.x
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
#video tutorial | |
https://youtu.be/WhMKWv57Gcg | |
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
sudo apt-get install gcc g++ make | |
sudo curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
sudo echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update && sudo apt-get install yarn | |
node --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment