HOW TO HOST NodeJS APP IN UBUNTU 18.4
Install nodejs: #apt update #curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh #bash nodesource_setup.sh #apt install nodejs Verify installation using below commands: #node -v #npm -v Install pm2 process manager: #npm i -g …
Read More