Node.js'nin (v8.1.4) daha yeni bir sürümü için, etkinlikler ve çağrılar eski sürümlerle benzer veya aynıdır, ancak standart daha yeni dil özelliklerinin kullanılması önerilir. Örnekler:
Arabellek, akışsız biçimlendirilmiş çıktılar (hepsini bir kerede alırsınız) için şunu kullanın 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 ile de kullanabilirsiniz:
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();
Verileri yavaş yavaş parçalar halinde (akış olarak çıktı) almak istiyorsanız, şunu kullanın 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}`);
});
Bu işlevlerin her ikisinin de senkron bir karşılığı vardır. Bunun için bir örnek 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');
Yanı sıra 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);
Not: Aşağıdaki kod hala işlevseldir, ancak öncelikle ES5 ve önceki kullanıcıları hedeflemektedir.
Node.js ile alt süreçleri yumurtlama modülü belgelerinde (v5.0.0) iyi belgelenmiştir . Bir komutu yürütmek ve çıktısını arabellek olarak almak için şunu kullanın 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
});
Büyük miktarda çıktı beklerken olduğu gibi akışla tanıtıcı işlem G / Ç kullanmanız gerekiyorsa, şunları kullanın 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);
Komut yerine bir dosya yürütüyorsanız child_process.execFile
, hangi parametrelerle hemen hemen aynı olan spawn
ancak exec
çıktı arabellekleri almak gibi dördüncü bir geri arama parametresine sahip olan parametreleri kullanmak isteyebilirsiniz . Bu biraz şöyle görünebilir:
var execFile = require('child_process').execFile;
execFile(file, args, options, function(error, stdout, stderr) {
// command output is in stdout
});
V0.11.12 itibariyle , Düğüm artık eşzamanlı spawn
ve exec
. Yukarıda açıklanan yöntemlerin tümü eşzamansızdır ve eşzamanlı bir karşılığı vardır. Onlar için belgeleri burada bulabilirsiniz . Komut dosyaları için yararlı olsalar da, alt işlemleri eşzamansız olarak oluşturmak için kullanılan yöntemlerin aksine, eşzamanlı yöntemlerin bir örneğini döndürmediğini unutmayın ChildProcess
.