同步 spawn 和流事件输出 NodeJS
Synchronize spawn and stream event output NodeJS
我想运行一套使用NodeJS的测试脚本,它在执行的同时输出测试结果。我希望这些不同的测试脚本同步 运行 并在执行时输出结果。
我尝试使用子进程的 spawnSync() 函数,但是它在执行命令期间不输出数据。
const { spawnSync } = require("child_process")
const cmd = spawnSync('./gradlew',['test'],{cwd : '../../../'})
console.log(`Output: ${cmd.stdout}`)
以上代码仅在任务完全执行完毕后才输出结果。我相信这是 spawnSync 的预期行为。
因此我尝试 运行在异步函数中使用 spawn() 和 await 来同步它,我不确定这种方法是否正确。
const { spawn } = require("child_process")
const cmd = spawn('./gradlew',['test'],{cwd : '../../../'})
const cmd1 = spawn('./gradlew',['test'],{cwd : '../../../'})
async function runFeature(){
console.log("Running feature....")
cmd.stdout.on('data', (data) => {
console.log(`Output: ${data}`);
});
}
async function runFeature1(){
console.log("Running feature 1....")
cmd1.stdout.on('data', (data) => {
console.log(`Output1: ${data}`);
});
}
async function main(){
try{
console.log("Starting...")
await runFeature()
await runFeature1()
process.exit(0)
} catch(e){
console.error(e)
process.exit(1)
}
}
main()
当运行执行上述代码时,命令结束,没有任何输出如下。 cmd.stdout.on()
方法似乎没有被执行。
harrym@HarryM:~/Project/test$ node run-test.js
Starting..
Running feature....
Running feature 1....
harrym@HarryM:~/Project/test$
这种做法有什么问题吗?。我真的需要帮助来调试这个问题。此外,非常感谢任何在输出实时数据流时同步子进程的建议。
提前谢谢你:)
如果您使用节点 10 或更高版本,您可以像这样使用通用迭代器函数:
const { spawn } = require('child_process');
(async () => {
try {
const lsSpawn = spawn('ls', ['-l'], { cwd: '../../../' });
let error = '';
for await (const chunk of lsSpawn.stderr) {
error += chunk;
}
if (error) {
console.error('error', error);
return;
}
let data = '';
for await (const chunk of lsSpawn.stdout) {
data += chunk;
}
if (data) {
console.log('data', data);
}
} catch (e) {
console.error('execute error', e);
}
})();
我在lsSpawn.stderr
和lsSpawn.stdout
中使用for await
提示:如果你想使用 promise,请不要与 event.on
混淆,你应该将 event.on
转换为 promise 格式
我想运行一套使用NodeJS的测试脚本,它在执行的同时输出测试结果。我希望这些不同的测试脚本同步 运行 并在执行时输出结果。
我尝试使用子进程的 spawnSync() 函数,但是它在执行命令期间不输出数据。
const { spawnSync } = require("child_process")
const cmd = spawnSync('./gradlew',['test'],{cwd : '../../../'})
console.log(`Output: ${cmd.stdout}`)
以上代码仅在任务完全执行完毕后才输出结果。我相信这是 spawnSync 的预期行为。
因此我尝试 运行在异步函数中使用 spawn() 和 await 来同步它,我不确定这种方法是否正确。
const { spawn } = require("child_process")
const cmd = spawn('./gradlew',['test'],{cwd : '../../../'})
const cmd1 = spawn('./gradlew',['test'],{cwd : '../../../'})
async function runFeature(){
console.log("Running feature....")
cmd.stdout.on('data', (data) => {
console.log(`Output: ${data}`);
});
}
async function runFeature1(){
console.log("Running feature 1....")
cmd1.stdout.on('data', (data) => {
console.log(`Output1: ${data}`);
});
}
async function main(){
try{
console.log("Starting...")
await runFeature()
await runFeature1()
process.exit(0)
} catch(e){
console.error(e)
process.exit(1)
}
}
main()
当运行执行上述代码时,命令结束,没有任何输出如下。 cmd.stdout.on()
方法似乎没有被执行。
harrym@HarryM:~/Project/test$ node run-test.js
Starting..
Running feature....
Running feature 1....
harrym@HarryM:~/Project/test$
这种做法有什么问题吗?。我真的需要帮助来调试这个问题。此外,非常感谢任何在输出实时数据流时同步子进程的建议。
提前谢谢你:)
如果您使用节点 10 或更高版本,您可以像这样使用通用迭代器函数:
const { spawn } = require('child_process');
(async () => {
try {
const lsSpawn = spawn('ls', ['-l'], { cwd: '../../../' });
let error = '';
for await (const chunk of lsSpawn.stderr) {
error += chunk;
}
if (error) {
console.error('error', error);
return;
}
let data = '';
for await (const chunk of lsSpawn.stdout) {
data += chunk;
}
if (data) {
console.log('data', data);
}
} catch (e) {
console.error('execute error', e);
}
})();
我在lsSpawn.stderr
和lsSpawn.stdout
for await
提示:如果你想使用 promise,请不要与 event.on
混淆,你应该将 event.on
转换为 promise 格式