如何从子进程实时重定向stdout

时间:2015-04-18 02:03:33

标签: node.js process pipe node-webkit nw.js

我有一个长时间运行的子进程

  

{stdio:'inherit'}

所以,我可以在控制台中看到它在做什么。

如何重定向此信息,以便它显示在我的node-webkit应用程序上?

1 个答案:

答案 0 :(得分:0)

只需以某种方式处理STDOUT流中的数据事件。

childProc.stdout.on('data', function (chunk) {
  // Write chunk to the page using whatever normal method you like
});