Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running a shell command from Node.js without buffering output

I'm trying to launch a shell command from Node.js, without redirecting that command's input and output -- just like shelling out to a command using a shell script, or using Ruby's system command. If the child process wants to write to STDOUT, I want that to go straight to the console (or get redirected, if my Node app's output was redirected).

Node doesn't seem to have any straightforward way to do this. It looks like the only way to run another process is with child_process, which always redirects the child process's input and output to pipes. I can write code to accept data from those pipes and write it to my process's STDOUT and STDERR, but if I do that, the APIs force me to sacrifice some flexibility.

I want two features:

  • Shell syntax. I want to be able to pipe output between commands, or run Windows batch files.
  • Unlimited output. If I'm shelling out to a compiler and it wants to generate megabytes of compiler warnings, I want them all to scroll across the screen (until the user gets sick of it and hits Ctrl+C).

It looks like Node wants to force me choose between those two features.

  • If I want an unlimited amount of output, I can use child_process.spawn and then do child.stdout.on('data', function(data) { process.stdout.write(data); }); and the same thing for stderr, and it'll happily pipe data until the cows come home. Unfortunately, spawn doesn't support shell syntax.
  • If I want shell syntax, I can use child_process.exec. But exec insists on buffering the child process's STDOUT and STDERR for me and giving them to me all at the end, and it limits the size of those buffers (configurable, 200K by default). I can still hook the on('data') events, if I want to see the output as it's generated, but exec will still add the data to its buffers too. When the amount of data exceeds the predefined buffer size, exec will terminate the child process.

(There's also child_process.execFile, which is the worst of both worlds from a flexibility standpoint: no shell syntax, but you still have to cap the amount of output you expect.)

Am I missing something? Is there any way to just shell out to a child process in Node, and not redirect its input and output? Something that supports shell syntax and doesn't crap out after a predefined amount of output, just like is available in shell scripts, Ruby, etc.?

like image 886
Joe White Avatar asked Mar 19 '12 20:03

Joe White


People also ask

How do I run a shell command in Node JS?

Node. js can run shell commands by using the standard child_process module. If we use the exec() function, our command will run and its output will be available to us in a callback. If we use the spawn() module, its output will be available via event listeners.

How do I run an exec in node JS?

The exec() function in Node. js creates a new shell process and executes a command in that shell. The output of the command is kept in a buffer in memory, which you can accept via a callback function passed into exec() . Let's begin creating our first child processes in Node.

How do I run a node script from the command line?

You can Run your JavaScript File from your Terminal only if you have installed NodeJs runtime. If you have Installed it then Simply open the terminal and type “node FileName. js”. If you don't have NodeJs runtime environment then go to NodeJs Runtime Environment Download and Download it.

Where should I run node js commands?

Node. js files must be initiated in the "Command Line Interface" program of your computer. How to open the command line interface on your computer depends on the operating system. For Windows users, press the start button and look for "Command Prompt", or simply write "cmd" in the search field.


2 Answers

You can inherit stdin/out/error streams via spawn argument so you don't need to pipe them manually:

var spawn = require('child_process').spawn; spawn('ls', [], { stdio: 'inherit' }); 

Use shell for shell syntax - for bash it's -c parameter to read script from string:

var spawn = require('child_process').spawn; var shellSyntaxCommand = 'ls -l | grep test | wc -c'; spawn('sh', ['-c', shellSyntaxCommand], { stdio: 'inherit' }); 

To summarise:

var spawn = require('child_process').spawn; function shspawn(command) {    spawn('sh', ['-c', command], { stdio: 'inherit' }); }   shspawn('ls -l | grep test | wc -c'); 
like image 54
Andrey Sidorov Avatar answered Sep 30 '22 10:09

Andrey Sidorov


You can replace exec by spawn and use the shell syntax simply with:

const {spawn} = require ('child_process'); const cmd = 'ls -l | grep test | wc -c'; const p = spawn (cmd, [], {shell: true});  p.stdout.on ('data', (data) => {   console.log (data.toString ()); }); 

The magic is just {shell: true}.

like image 39
Skywalker13 Avatar answered Sep 30 '22 10:09

Skywalker13