mirror of
https://github.com/Raghu-Ch/nodeRestAPI.git
synced 2026-02-10 20:53:02 -05:00
8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
// does nothing child process
|
|
console.log("Child process.id: " + process.pid);
|
|
console.log(" - - - - - - - - - - - - - - - - - - - - - - - ");
|
|
|
|
setTimeout(function () {
|
|
/* Does nothing, but prevents exit */
|
|
}, 1000);
|