Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nodejs child_process spawn custom stdio

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.

like image 947
Mr Br Avatar asked Jan 23 '16 18:01

Mr Br


1 Answers

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);
like image 173
Shanoor Avatar answered Sep 30 '22 19:09

Shanoor