1curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
2sudo apt-get install -y nodejs
1# Using Ubuntu
2curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
3sudo apt-get install -y nodejs
4
5# Using Debian, as root
6curl -sL https://deb.nodesource.com/setup_13.x | bash -
7apt-get install -y nodejs
8
1# Using Ubuntu
2curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
3sudo apt-get install -y nodejs
4
5# Using Debian, as root
6curl -sL https://deb.nodesource.com/setup_12.x | bash -
7apt-get install -y nodejs
8