Last active
November 22, 2019 04:28
-
-
Save khanakia/c976a13633a3bf9aa6088b4b2ab8bd7e to your computer and use it in GitHub Desktop.
Install Node.js Ubuntu
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
sudo apt-get install curl | |
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - | |
## For Older Version you can use | |
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
sudo apt-get install nodejs | |
## You may also need development tools to build native addons: | |
sudo apt-get install gcc g++ make | |
# Check versions | |
node -v | |
npm -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment