I have the below code
// Parent.js
var cp = require('child_process');
var child = cp.fork('./pChild.js');
child.on('message', function(m) {
// Receive results from child process
console.log('received: ' + m);
});
// Send child process some work
child.send('First Fun');
// pChild.js
process.on('message', function(m) {
console.log("Helloooooooooo from pChild.js")
// Pass results back to parent process
process.send("Fun1 complete");
});
How to handle error in parent thrown from pChild.js and kill the process?
Unhandled errors in the child process will cause it to exit, which will emit the
'exit'
event on thechild
object.If the error is handled within the child, it can be sent as another message:
Updated answer
On child
On master