亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用Node.js執行命令行二進制文件

使用Node.js執行命令行二進制文件

catspeake 2019-06-23 15:59:22
使用Node.js執行命令行二進制文件我正在將CLI庫從Ruby移植到Node.js。在我的代碼中,我在必要時執行幾個第三方二進制文件。我不知道如何在Node中最好地完成這一任務。下面是Ruby中的一個示例,其中我調用prineXML將文件轉換為PDF:cmd = system("prince -v builds/pdf/book.html -o builds/pdf/book.pdf")Node中的等效代碼是什么?
查看完整描述

2 回答

?
MYYA

TA貢獻1868條經驗 獲得超4個贊

對于新版本的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}`);});

您也可以將其用于承諾:

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 chunkschild.stdout.on('data', (chunk) => {
  // data from standard output is here as buffers});// since these are streams, you can pipe them elsewherechild.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 proces
s// you can set options.stdio if you want it to go elsewherelet 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和之前的用戶。

使用Node.js生成子進程的模塊在文獻資料(5.0.0節)。若要執行命令并將其完整輸出作為緩沖區獲取,請使用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 elsewherechild.stdout.pipe(dest);

如果正在執行文件而不是命令,則可能需要使用child_process.execFile,哪些參數幾乎與spawn,但是有第四個回調參數,如exec用于檢索輸出緩沖區??雌饋砜赡苡悬c像這樣:

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

截至v0.11.12,Node現在支持同步。spawnexec..上面描述的所有方法都是異步的,并且具有同步對應。他們的文件可以找到這里..雖然它們對腳本很有用,但請注意,與異步生成子進程所用的方法不同,同步方法不返回ChildProcess.


查看完整回答
反對 回復 2019-06-23
  • 2 回答
  • 0 關注
  • 960 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號