0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/test/fixtures/child-process-spawn-node.js
Ryan Dahl 9e26dab150 child_process.spawnNode
For making easy worker processes.
2011-05-11 02:24:48 -07:00

11 lines
222 B
JavaScript

var assert = require('assert');
process.on('message', function(m) {
console.log('CHILD got message:', m);
assert.ok(m.hello);
// Note that we have to force exit.
process.exit();
});
process.send({ foo: 'bar' });