Uncategorized Install node and npm on Ubuntu 18.04 April 2, 2021 Just a quick and dirty process for getting npm and nodejs running in an Ubuntu 18.04 environment on an AWS EC2 instance: curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - ; npm --version ; sudo apt install nodejs ; node --version