Posted on September 15, 2019 at 2:45 pm
You can use the Node package named Forever to run continuously a NodeJs script. The advantage of using “forever” package is that it can make a NodeJs script execute forever even after the node script process is killed, because it gets respawned!
1) Install Node “forever” package
npm install forever -g |
2) Continuously start your NdoeJs script:
forever start /path/to/server.js |
3) To check if your NodeJs script is running use:
ps -ef | grep "/path/to/server.js" |
4) To stop the NodeJs script just use:
forever stop /path/to/server.js |
Updated on September 17, 2019 at 1:39 pm
Other Posts
- Route OpenVPN Connections Through Floating IP
- How to Configure a Floating IP in a VPS (Hetzner)
- Set OpenVPN to Listed on a Specific IP Address
- Bash Trim Leading and Trailing Whitespace from a String
- Bash Get Name of Ethernet Network Interface
- VPN Providers with Dedicated Static IP Address
- OpenVPN Iptables Rules
- WireGuard VPN Iptables Rules
Updated Posts
- AMD Chipsets & Graphics Card Drivers for Windows 7, 8, 10
- AMD Radeon 7400 Drivers for Windows 10
- How to pass custom command-line parameters in InnoSetup
- Add Desktop shortcut for all Windows PC users
- Programmatically create desktop icon with InnoSetup
- GeneratePress - a Lightweight WordPress Theme 2021
- InnoSetup disable DesktopIcon via command-line
- Use cURL to authenticate with JWT Bearer tokens