2.0.1 • Published 10 years ago
child_process2 v2.0.1
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());
});