strom/samples/child.js

7 lines
192 B
JavaScript
Raw Normal View History

2020-07-04 04:08:31 +00:00
const strom = require("strom");
const catProcess = require("child_process").exec("grep -o ab");
2020-07-04 04:08:31 +00:00
strom.fromArray(["a", "b", "c"])
.pipe(strom.child(catProcess))
.pipe(process.stdout);