- Install node js on ubunutu
# install the current release
# currently nodejs 12 is available at time of writting the docs
$ sudo apt-get install curl python-software-properties
$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
# install the LTS release
# Node.js 10.15.3 is the LTS release available at time of writting the docs
$ sudo apt-get install curl python-software-properties
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
$ sudo apt-get install nodejs
$ nodejs -v