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()); });