exec_stream

Create read-write pipeable stream from spawned process

Usage no npm install needed!

<script type="module">
  import execStream from 'https://cdn.skypack.dev/exec_stream';
</script>

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