nodejs 父进程在 console 里面打印子进程的输出的时候,能保持子进程输出的颜色吗?
例如有下面一段代码:
var exec = require('child_process').exec;
var child = exec('git status');
child.stdout.on('data', function (data) {
console.log(data);
});
8 回复
‘use strict’;
const spawn = require(‘child_process’).spawn; spawn(‘git’, [‘status’], { stdio: ‘inherit’ });
PS:因为使用了const,运行时需要添加「–harmony」选项。
不能吧,需要装插件吧
@xing-zhi 试了一下,可以保持颜色。但是发现另一个问题:如何在代码里获取子进程输出的内容呢?
测试
@koko20130101:haha
abc
@yibuyisheng 在process.stdout中可以获取,但是有其他输出时就比较麻烦。
建议多看看文档。