I would like to use custom stream to handle child_process.spawn stdio.
For example
const cp = require('child_process');
const process = require('process');
const stream = require('stream');
var customStream = new stream.Stream();
customStream.on('data', function (chunk) {
console.log(chunk);
});
cp.spawn('ls', [], {
stdio: [null, customStream, process.stderr]
});
I get error Incorrect value for stdio stream
.
There is documentation for child_process.spawn https://nodejs.org/api/child_process.html#child_process_options_stdio. It says for stdio options that it can take Stream object
Stream object - Share a readable or writable stream that refers to a tty, file, socket, or a pipe with the child process.
I guess I'am missing this "refers to" part.
It seems to be a bug: https://github.com/nodejs/node-v0.x-archive/issues/4030 The customStream
seems to be not ready when it's passed to spawn(). You can go around this issue easily:
const cp = require('child_process');
const stream = require('stream');
// use a Writable stream
var customStream = new stream.Writable();
customStream._write = function (data) {
console.log(data.toString());
};
// 'pipe' option will keep the original cp.stdout
// 'inherit' will use the parent process stdio
var child = cp.spawn('ls', [], {
stdio: [null, 'pipe', 'inherit']
});
// pipe to your stream
child.stdout.pipe(customStream);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With