Keeping node.js servers up forever
blog.nodejitsu.com
Keeping node.js servers up forever
1–10 of 41 posts
Re: Keeping node.js servers up forever
#2Re: Keeping node.js servers up forever
#3Re: Keeping node.js servers up forever
#4Re: Keeping node.js servers up forever
#5Re: Keeping node.js servers up forever
#6Re: Keeping node.js servers up forever
#7I like how there's a command line interface plus an application interface, so I can tie forever process management into my web interface and backend control interface. Right now the processes are just sitting in a `while true` bash loop.
In the next version I'd like to expose a web service and also have hooks for doing things like sending emails when forever restarts a process.
Re: Keeping node.js servers up forever
#8Last I checked Ryan was saying this was a very bad idea. Has that changed? It's certainly enticing.
Re: Keeping node.js servers up forever
#9By using the 'http' module we can run a stand-alone web server in node.js without the need for a separate server like Apache or nginx. Last I checked Ryan was saying this was a very bad idea. Has that changed? It's certainly enticing.
Re: Keeping node.js servers up forever
#10Edit: removed references to "proprietary", as indexzero is correct about meaning of that.