exec_stream
v0.0.3
Published
Create read-write pipeable stream from spawned process
Downloads
40
Readme
exec-stream
create read-write stream from child process stdin/stdout
var execStream = require('exec_stream');
var find = execStream('find', ['/']);
var nc = execStream('nc', ['localhost', '1212']);
find.pipe(nc);