# How To Install Node.js on Ubuntu 20.04

Here are the simpified command list. Plz refer to [original source](https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04) for details. 


```bash
sudo apt update
sudo apt upgrade
sudo apt install nodejs
sudo -v
sudo apt install npm
``` 

