socket.io 作为客户端
有什么方法可以将socketio作为客户端运行(不是浏览器,而是nodejs脚本)
我需要将数据从服务器广播到某些客户端(浏览器)和另一台linux机器(仅运行nodejs来获取变量,没有浏览器)
欢迎任何想法
问候
is there any way to run socketio as a client(not a browser, but a nodejs script)
I need to broadcast data from a server to some clients (browsers) and to another linux machine (only running nodejs to get variables, no browser)
Any ideias is welcome
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
github上有一个项目实现了socket.io客户端。看一下这里:
https://github.com/remy/Socket.io-node-客户端
There is a project on github which implements a socket.io client. Take a look here:
https://github.com/remy/Socket.io-node-client
我相信你可以使用socket.io-client。要求它并在您的 Node.js 代码中使用它,就像在客户端/浏览器中一样。我现在还发现了这个有趣的教程=> http://liamkaufman。 com/blog/2012/01/28/testing-socketio-with-mocha-should-and-socketio-client/
I believe you could just use socket.io-client. require that and use that in your node.js code as would in the client/browser. I also found this interesting tutorial right now => http://liamkaufman.com/blog/2012/01/28/testing-socketio-with-mocha-should-and-socketio-client/
只需
require('socket.io-client')
并运行$ node client.js
正如 阿尔弗雷德。我确认这适用于socket.io-client
v1.4.8。为了进行演示,请参阅以下代码:服务器:
使用
$ node server.js
启动服务器,然后在另一个终端中启动客户端$ node client.js
并观看奇迹正在发生:它起作用了!一个非常方便的方法,例如测试您的 socket.io API。
Just
require('socket.io-client')
and run$ node client.js
as pointed out by Alfred. I confirm this works withsocket.io-client
v1.4.8. To demonstrate, see the following code:The server:
Spin up the server with
$ node server.js
and then the client$ node client.js
in another terminal and watch the magic happening:It works! A very convenient way for example to test your socket.io API.
在这种情况下,请使用 http 请求。
这是我的代码。
祝你好运。
In that case, use the http request.
This is my code.
good luck.