프로그래밍 언어/HTML,CSS,JS

Node.js로 명령 줄 바이너리 실행 하는 방법

Rateye 2021. 9. 27. 10:49
728x90
반응형
질문 : Node.js로 명령 줄 바이너리 실행

Ruby에서 Node.js로 CLI 라이브러리를 포팅하는 중입니다. 내 코드에서 필요한 경우 여러 타사 바이너리를 실행합니다. Node.js에서 이것을 수행하는 가장 좋은 방법을 모르겠습니다.

다음은 파일을 PDF로 변환하기 위해 PrinceXML을 호출하는 Ruby의 예입니다.

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

Node의 동등한 코드는 무엇입니까?

답변

최신 버전의 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}`);
});

Promise와 함께 사용할 수도 있습니다.

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 이하 사용자를 대상으로합니다.

Node.js로 자식 프로세스를 생성하는 모듈은 문서 (v5.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 elsewhere
child.stdout.pipe(dest);

명령이 아닌 파일을 실행하는 경우에는 spawn 과 거의 동일하지만 출력 버퍼를 검색하기 위해 exec 와 같은 네 번째 콜백 매개 변수가있는 child_process.execFile 다음과 같이 보일 수 있습니다.

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 인스턴스를 반환하지 않습니다.

출처 : https://stackoverflow.com/questions/20643470/execute-a-command-line-binary-with-node-js
728x90
반응형