How to install NodeJS 18.x LTS on Ubuntu in 1 minute
Run these shell commands on your Ubuntu computer to install NodeJS 18.x:
sudo apt -y install curl
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs
Instead of setup_18.x
you can also choose other versions like setup_16.x
. However, using this method, you can’t install multiple versions of NodeJS in parallel.