child_process2
v2.0.1
Published
child_process module with `shell` option
Downloads
60
Readme
child_process2
standard child_process module with added shell option
Usage
var cp=require('child_process2');
var sp=cp.spawn('dir', {shell:true});
sp.stdout.on('data', function(d)
{
console.log(d.toString());
});