nodejs中向HTTP响应传送进程的输出
废话不多说了,直接给大家贴代码了,具体代码如下所述: var spawn = require('child_process').spawn; require('http').createServer(function(req, res) { var child = spawn('tail', ['-f', '/var/log/system.log']);//当有一个新的请求出现时,就通过执行 tail -f /var/log/system.log命令启动一个新的进程 child.stdout.pipe(res);//将子进程的输出传入相响应主体中 res.on('end', funct
用户评论