git clone https://github.com/Fir3eye/1-Node.js.git
apt install npm
npm install
node index.js
your_server_ip:3000
Install pm2
npm install -g pm2
Run in Background
pm2 start index.js
Stop the app
pm2 stop index.js
See the logs
pm2 logs index.js
Delete the app from Background
pm2 delete index.js
"# Node.js"