Nodes child_process doesn't work for my use case. What other ways to start processes from a node.js application are available? Google seems to point me to child_process for all queries I've tried.
Edit I need to start a number of processes from a node.js application. Those processes need to outlive the 'starting' process. In other words: If the 'starting' process is killed (no matter how) the spawned processes have to keep running unimpeded.
I've tried to intercept SIGINT in processes started with any method in child_process. It kinda works but as soon as the process tries to write to stdout the process crashes.