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);
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);
npm i exec_stream
11
0.0.3
MIT