NodeJS实时示例

发布于 2024-11-04 23:50:43 字数 622 浏览 0 评论 0原文

我发现这个 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 上?

I found this http://blog.new-bamboo.co.uk/2009/12/7/real-time-online-activity-monitor-example-with-node-js-and-websocket
I can start the server but accessing "iostat-client.html" displays "connection closed". Anyone from here tried this example? Or Does any one know other similar real time examples?
More specifically -

> # 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); });

How to make sure ,output(its not working) from above appears over http on port 8080?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文