Concurrent tasks computation among nodejs child processes (vertical scaling)

Concurrent tasks computation among nodejs child processes
Install module with: npm install children
var children = require('children')(path.resolve(__dirname, './worker2.js'), {
// @see Manager.defaults
});
children.start(function(){
// Or listen to the `ready` event
children.send("hello world");
});
children is a collection of child process that implements ~28 underscore methods
> children.pluck('pid')
[ 47494, 47495, 47496, 47497 ]
ready(children)respawning:child(child, children)spawning:child(child, children)spawned:child(child, children)killing:child(child, children)killed:child(child, children, exitCode, signalCode)
v0.1.0 - Initial commit (17 fev. 2012)
Copyright (c) 2013 Francois-Guillaume Ribreau
Licensed under the MIT license.