我找到了http://blog.new-bamboo.co.uk/2009/12/7/real-time-online-activity-monitor-example-with-node-js-and-websocket 我可以启动服务器,但访问“iostat-client.html”显示“连接已关闭”。这里有人试过这个例子吗?或者是否有人知道其他类似的实时例子? 更具体地说 -
> # cat child3.js
> spawn = require('child_process').spawn;
>
> tail = spawn('tail -f
> /home/laks/ruby/txt.log');
>
> tail.stdout.on("output",function(data){
> console.log(data); });
如何确保从上面输出(它不工作)显示在端口8080上的http上?
答案 0 :(得分:0)