使用Node.js执行命令行二进制文件


647

我正在将CLI库从Ruby移植到Node.js。在我的代码中,如有必要,我将执行几个第三方二进制文件。我不确定在Node中如何最好地做到这一点。

这是Ruby中的一个示例,其中我调用PrinceXML将文件转换为PDF:

cmd = system("prince -v builds/pdf/book.html -o builds/pdf/book.pdf")

Node中的等效代码是什么?


3
库是一个很好的起点。它允许您在所有操作系统平台上生成进程。
黑曜石


2
最简单的方法是使用child_process.exec,这是一些很好的示例
drorw

Answers:


1068

对于更高版本的Node.js(v8.1.4),事件和调用与旧版本相似或相同,但建议使用标准的较新语言功能。例子:

对于缓冲的,非流格式的输出(一次全部获取),请使用child_process.exec

const { exec } = require('child_process');
exec('cat *.js bad_file | wc -l', (err, stdout, stderr) => {
  if (err) {
    // node couldn't execute the command
    return;
  }

  // the *entire* stdout and stderr (buffered)
  console.log(`stdout: ${stdout}`);
  console.log(`stderr: ${stderr}`);
});

您也可以将其与Promises一起使用:

const util = require('util');
const exec = util.promisify(require('child_process').exec);

async function ls() {
  const { stdout, stderr } = await exec('ls');
  console.log('stdout:', stdout);
  console.log('stderr:', stderr);
}
ls();

如果您希望逐步接收数据块(作为流输出),请使用child_process.spawn

const { spawn } = require('child_process');
const child = spawn('ls', ['-lh', '/usr']);

// use child.stdout.setEncoding('utf8'); if you want text chunks
child.stdout.on('data', (chunk) => {
  // data from standard output is here as buffers
});

// since these are streams, you can pipe them elsewhere
child.stderr.pipe(dest);

child.on('close', (code) => {
  console.log(`child process exited with code ${code}`);
});

这两个功能都有一个同步对应项。的示例child_process.execSync

const { execSync } = require('child_process');
// stderr is sent to stderr of parent process
// you can set options.stdio if you want it to go elsewhere
let stdout = execSync('ls');

以及child_process.spawnSync

const { spawnSync} = require('child_process');
const child = spawnSync('ls', ['-lh', '/usr']);

console.log('error', child.error);
console.log('stdout ', child.stdout);
console.log('stderr ', child.stderr);

注意:以下代码仍可正常运行,但主要针对ES5及更高版本的用户。

文档(v5.0.0)中很好地记录了使用Node.js生成子进程的模块。要执行命令并获取其完整的输出作为缓冲区,请使用child_process.exec

var exec = require('child_process').exec;
var cmd = 'prince -v builds/pdf/book.html -o builds/pdf/book.pdf';

exec(cmd, function(error, stdout, stderr) {
  // command output is in stdout
});

如果您需要对流使用句柄进程I / O,例如当您期望大量输出时,请使用child_process.spawn

var spawn = require('child_process').spawn;
var child = spawn('prince', [
  '-v', 'builds/pdf/book.html',
  '-o', 'builds/pdf/book.pdf'
]);

child.stdout.on('data', function(chunk) {
  // output will be here in chunks
});

// or if you want to send output elsewhere
child.stdout.pipe(dest);

如果您执行的是文件而不是命令,则可能要使用child_process.execFile,这些参数几乎与相同spawn,但是具有第四个回调参数,例如exec用于检索输出缓冲区。可能看起来像这样:

var execFile = require('child_process').execFile;
execFile(file, args, options, function(error, stdout, stderr) {
  // command output is in stdout
});

v0.11.12开始,Node现在支持syncspawnexec。上述所有方法都是异步的,并且具有同步的对应方法。它们的文档可以在这里找到。尽管它们对于脚本编写很有用,但请注意,与用于异步生成子进程的方法不同,同步方法不会返回的实例ChildProcess


19
谢谢。这让我发疯。有时候,指出明显的解决方案会有所帮助,以便我们菜鸟(到节点)可以学习并运行它。
戴夫·汤普森

10
注意:require('child_process')。execFile()对于需要运行文件而不是像prince这样的系统范围的已知命令的人们来说,将是很有意思的。
路易·阿梅琳

2
而不是child.pipe(dest)(不存在)必须使用child.stdout.pipe(dest)child.stderr.pipe(dest),例如child.stdout.pipe(process.stdout)child.stderr.pipe(process.stderr)
ComFreek

如果我不想将所有内容都放入一个文件中,但是我想执行多个命令怎么办?也许喜欢echo "hello"echo "world"
卡梅伦

这是执行此操作的标准方法吗?我的意思是所有包装器都如何用nodejs编写?我的意思是说说Gearman,rabbitmq等,它们需要运行命令,但是它们也有一些包装器,但是我在他们的库代码中找不到任何此代码
ANinJa

261

节点JS v13.9.0,LTS v12.16.1v10.19.0 2020年3月

异步方法(Unix):

'use strict';

const { spawn } = require( 'child_process' );
const ls = spawn( 'ls', [ '-lh', '/usr' ] );

ls.stdout.on( 'data', data => {
    console.log( `stdout: ${data}` );
} );

ls.stderr.on( 'data', data => {
    console.log( `stderr: ${data}` );
} );

ls.on( 'close', code => {
    console.log( `child process exited with code ${code}` );
} );


异步方法(Windows):

'use strict';

const { spawn } = require( 'child_process' );
const dir = spawn('cmd', ['/c', 'dir'])

dir.stdout.on( 'data', data => console.log( `stdout: ${data}` ) );
dir.stderr.on( 'data', data => console.log( `stderr: ${data}` ) );
dir.on( 'close', code => console.log( `child process exited with code ${code}` ) );


同步:

'use strict';

const { spawnSync } = require( 'child_process' );
const ls = spawnSync( 'ls', [ '-lh', '/usr' ] );

console.log( `stderr: ${ls.stderr.toString()}` );
console.log( `stdout: ${ls.stdout.toString()}` );

Node.js v13.9.0文档

这同样适用于Node.js的v12.16.1文档Node.js的v10.19.0文档


8
感谢您提供正确和简单的版本。稍微简单的同步版本对于我需要的“执行某项操作并将其丢弃”脚本完全没问题。
布赖恩·乔登

没问题!即使有些人认为这两者都不“合适”,总是很高兴。
iSkore

7
可能值得指出的是,为了在Windows中执行此示例,必须使用'cmd', ['/c', 'dir']。至少我只是在高低搜寻,为什么'dir'没有参数在我想起这个之前不起作用...;)
AndyO '18

1
这些都不输出到控制台。
Tyguy18年

@ Tyguy7您如何运行它?并且您在控制台对象上有任何替代吗?
iSkore

73

您正在寻找child_process.exec

这是示例:

const exec = require('child_process').exec;
const child = exec('cat *.js bad_file | wc -l',
    (error, stdout, stderr) => {
        console.log(`stdout: ${stdout}`);
        console.log(`stderr: ${stderr}`);
        if (error !== null) {
            console.log(`exec error: ${error}`);
        }
});

这是对的。但是请注意,这种对子进程的调用对stdout的长度有所限制。
hgoebl 2013年

@hgoebl,那么还有什么替代方法?
2015年

2
如果输出标准输出较长(例如,几个MB),则@Harshdeep可以监听标准输出上的data事件。查看文档,但必须类似childProc.stdout.on("data", fn)
hgoebl 2015年

30
const exec = require("child_process").exec
exec("ls", (error, stdout, stderr) => {
 //do whatever here
})

14
请添加有关此代码如何工作以及如何解决答案的更多说明。请记住,StackOverflow正在为将来阅读此书的人们建立答案的档案。
Al Sweigart

4
Al所说的是正确的,但我会说这个答案的好处是,它比需要快速响应的人通读最重要的答案要简单得多。

29

从版本4开始,最接近的替代child_process.execSync方法是:

const {execSync} = require('child_process');

let output = execSync('prince -v builds/pdf/book.html -o builds/pdf/book.pdf');

请注意,execSync调用会阻止事件循环。


这在最新节点上效果很好。是child_process使用时被创建execSync,但?并在命令后立即将其删除,对吗?所以没有内存泄漏?
NiCk Newman

1
是的,没有内存泄漏。我猜它只初始化libuv子进程结构,而根本不在节点中创建它。
Paul Rumkin

21

如果您想要的内容与最高答案非常相似,但同时又是同步的,那么它将起作用。

var execSync = require('child_process').execSync;
var cmd = "echo 'hello world'";

var options = {
  encoding: 'utf8'
};

console.log(execSync(cmd, options));

14

我只是写了一个Cli帮助器来轻松处理Unix / windows。

Javascript:

define(["require", "exports"], function (require, exports) {
    /**
     * Helper to use the Command Line Interface (CLI) easily with both Windows and Unix environments.
     * Requires underscore or lodash as global through "_".
     */
    var Cli = (function () {
        function Cli() {}
            /**
             * Execute a CLI command.
             * Manage Windows and Unix environment and try to execute the command on both env if fails.
             * Order: Windows -> Unix.
             *
             * @param command                   Command to execute. ('grunt')
             * @param args                      Args of the command. ('watch')
             * @param callback                  Success.
             * @param callbackErrorWindows      Failure on Windows env.
             * @param callbackErrorUnix         Failure on Unix env.
             */
        Cli.execute = function (command, args, callback, callbackErrorWindows, callbackErrorUnix) {
            if (typeof args === "undefined") {
                args = [];
            }
            Cli.windows(command, args, callback, function () {
                callbackErrorWindows();

                try {
                    Cli.unix(command, args, callback, callbackErrorUnix);
                } catch (e) {
                    console.log('------------- Failed to perform the command: "' + command + '" on all environments. -------------');
                }
            });
        };

        /**
         * Execute a command on Windows environment.
         *
         * @param command       Command to execute. ('grunt')
         * @param args          Args of the command. ('watch')
         * @param callback      Success callback.
         * @param callbackError Failure callback.
         */
        Cli.windows = function (command, args, callback, callbackError) {
            if (typeof args === "undefined") {
                args = [];
            }
            try {
                Cli._execute(process.env.comspec, _.union(['/c', command], args));
                callback(command, args, 'Windows');
            } catch (e) {
                callbackError(command, args, 'Windows');
            }
        };

        /**
         * Execute a command on Unix environment.
         *
         * @param command       Command to execute. ('grunt')
         * @param args          Args of the command. ('watch')
         * @param callback      Success callback.
         * @param callbackError Failure callback.
         */
        Cli.unix = function (command, args, callback, callbackError) {
            if (typeof args === "undefined") {
                args = [];
            }
            try {
                Cli._execute(command, args);
                callback(command, args, 'Unix');
            } catch (e) {
                callbackError(command, args, 'Unix');
            }
        };

        /**
         * Execute a command no matters what's the environment.
         *
         * @param command   Command to execute. ('grunt')
         * @param args      Args of the command. ('watch')
         * @private
         */
        Cli._execute = function (command, args) {
            var spawn = require('child_process').spawn;
            var childProcess = spawn(command, args);

            childProcess.stdout.on("data", function (data) {
                console.log(data.toString());
            });

            childProcess.stderr.on("data", function (data) {
                console.error(data.toString());
            });
        };
        return Cli;
    })();
    exports.Cli = Cli;
});

Typescript原始源文件:

 /**
 * Helper to use the Command Line Interface (CLI) easily with both Windows and Unix environments.
 * Requires underscore or lodash as global through "_".
 */
export class Cli {

    /**
     * Execute a CLI command.
     * Manage Windows and Unix environment and try to execute the command on both env if fails.
     * Order: Windows -> Unix.
     *
     * @param command                   Command to execute. ('grunt')
     * @param args                      Args of the command. ('watch')
     * @param callback                  Success.
     * @param callbackErrorWindows      Failure on Windows env.
     * @param callbackErrorUnix         Failure on Unix env.
     */
    public static execute(command: string, args: string[] = [], callback ? : any, callbackErrorWindows ? : any, callbackErrorUnix ? : any) {
        Cli.windows(command, args, callback, function () {
            callbackErrorWindows();

            try {
                Cli.unix(command, args, callback, callbackErrorUnix);
            } catch (e) {
                console.log('------------- Failed to perform the command: "' + command + '" on all environments. -------------');
            }
        });
    }

    /**
     * Execute a command on Windows environment.
     *
     * @param command       Command to execute. ('grunt')
     * @param args          Args of the command. ('watch')
     * @param callback      Success callback.
     * @param callbackError Failure callback.
     */
    public static windows(command: string, args: string[] = [], callback ? : any, callbackError ? : any) {
        try {
            Cli._execute(process.env.comspec, _.union(['/c', command], args));
            callback(command, args, 'Windows');
        } catch (e) {
            callbackError(command, args, 'Windows');
        }
    }

    /**
     * Execute a command on Unix environment.
     *
     * @param command       Command to execute. ('grunt')
     * @param args          Args of the command. ('watch')
     * @param callback      Success callback.
     * @param callbackError Failure callback.
     */
    public static unix(command: string, args: string[] = [], callback ? : any, callbackError ? : any) {
        try {
            Cli._execute(command, args);
            callback(command, args, 'Unix');
        } catch (e) {
            callbackError(command, args, 'Unix');
        }
    }

    /**
     * Execute a command no matters what's the environment.
     *
     * @param command   Command to execute. ('grunt')
     * @param args      Args of the command. ('watch')
     * @private
     */
    private static _execute(command, args) {
        var spawn = require('child_process').spawn;
        var childProcess = spawn(command, args);

        childProcess.stdout.on("data", function (data) {
            console.log(data.toString());
        });

        childProcess.stderr.on("data", function (data) {
            console.error(data.toString());
        });
    }
}

Example of use:

    Cli.execute(Grunt._command, args, function (command, args, env) {
        console.log('Grunt has been automatically executed. (' + env + ')');

    }, function (command, args, env) {
        console.error('------------- Windows "' + command + '" command failed, trying Unix... ---------------');

    }, function (command, args, env) {
        console.error('------------- Unix "' + command + '" command failed too. ---------------');
    });

1
那里的最新版本,以及在CLI中使用Grunt的用法示例:gist.github.com/Vadorequest/f72fa1c152ec55357839
Vadorequest 2015年

7

现在,您可以使用shelljs(来自节点v4),如下所示:

var shell = require('shelljs');

shell.echo('hello world');
shell.exec('node --version')

6

如果您不介意依赖关系并希望使用Promise,child-process-promise可以使用:

安装

npm install child-process-promise --save

exec用法

var exec = require('child-process-promise').exec;

exec('echo hello')
    .then(function (result) {
        var stdout = result.stdout;
        var stderr = result.stderr;
        console.log('stdout: ', stdout);
        console.log('stderr: ', stderr);
    })
    .catch(function (err) {
        console.error('ERROR: ', err);
    });

生成使用

var spawn = require('child-process-promise').spawn;

var promise = spawn('echo', ['hello']);

var childProcess = promise.childProcess;

console.log('[spawn] childProcess.pid: ', childProcess.pid);
childProcess.stdout.on('data', function (data) {
    console.log('[spawn] stdout: ', data.toString());
});
childProcess.stderr.on('data', function (data) {
    console.log('[spawn] stderr: ', data.toString());
});

promise.then(function () {
        console.log('[spawn] done!');
    })
    .catch(function (err) {
        console.error('[spawn] ERROR: ', err);
    });

4

使用此轻量级npm软件包:system-commands

这里看。

像这样导入它:

const system = require('system-commands')

运行如下命令:

system('ls').then(output => {
    console.log(output)
}).catch(error => {
    console.error(error)
})

完善!非常适合我的需求。
罗斯福

3

@hexacyanide的答案几乎是完整的答案。在Windows命令prince可能是prince.exeprince.cmdprince.bat或者只是prince(我不知道的宝石捆绑的方式,但NPM箱都配有SH脚本,批处理脚本- npmnpm.cmd)。如果要编写可在Unix和Windows上运行的可移植脚本,则必须生成正确的可执行文件。

这是一个简单但可移植的生成函数:

function spawn(cmd, args, opt) {
    var isWindows = /win/.test(process.platform);

    if ( isWindows ) {
        if ( !args ) args = [];
        args.unshift(cmd);
        args.unshift('/c');
        cmd = process.env.comspec;
    }

    return child_process.spawn(cmd, args, opt);
}

var cmd = spawn("prince", ["-v", "builds/pdf/book.html", "-o", "builds/pdf/book.pdf"])

// Use these props to get execution results:
// cmd.stdin;
// cmd.stdout;
// cmd.stderr;
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.