Concurrent tasks computation among nodejs child processes
npm install childrenNode Children    
==============
!npm
Concurrent tasks computation among nodejs child processes
npm install childrenjavascript
var children = require('children')(path.resolve(__dirname, './worker2.js'), {
// @see Manager.defaults
});// Start all childrens
children.start(function(){
// specify a callback or listen to the
ready event
children.send("hello world");
});
`children is a collection of child process that implements ~28 underscore methods`javascript
> children.pluck('pid')
[ 47494, 47495, 47496, 47497 ]
`Available events
ready(children)
message(child)
respawning:child(child, children)
spawning:child(child, children)
spawned:child(child, children)
killing:child(child, children)
killed:child(child, children, exitCode, signalCode)`