I\'m using child_process.spawn/child_process.fork to start a number of child processes from a node.js application. When stopping the parent process with Ctrl-C the child pro
You could call childprocess.disconnect(); in the parent or process.disconnect(); in the child.
childprocess.disconnect();
process.disconnect();