justacode
Install NodeJS Via The Terminal On Ubuntu
$ sudo apt-get install curl
$ curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
$ sudo apt-get install nodejs
# Check if installed correctly:
$ node -v
$ npm -v
$ sudo apt-get install curl
$ curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
$ sudo apt-get install nodejs
# Check if installed correctly:
$ node -v
$ npm -v