11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
process.on('uncaughtException', function(error) {
|
|
process.send(error.stack);
|
|
});
|
|
|
|
var child = require('child_process').fork(__dirname + '/ping.js');
|
|
process.on('message', function(msg) {
|
|
child.send(msg);
|
|
});
|
|
child.on('message', function (msg) {
|
|
process.send(msg);
|
|
});
|