是否有用于Node.js的服务器端Websocket客户端



我一直在使用 socket.io 在node.js中创建启用websocket的服务器,它很棒。 但是,现在我想在node中创建一个服务器端客户端.js它可以连接到其他地方的websocket服务器。 有没有这方面的图书馆?

谢谢

https://github.com/pgriess/node-websocket-client <- 这个适合你吗?

在此列表中找到:https://github.com/joyent/node/wiki/modules

不是任何伟大的。

几天前我在邮件列表中与吉列尔莫谈过这个问题,请参阅 http://groups.google.com/group/socket_io/browse_thread/thread/74e9ff6d7e931f6e

我把它写成一个引导程序来帮助我的测试:https://github.com/jmoyers/mettle/blob/master/test/test-socket.coffee#L18-49

吉列尔莫正在这里研究一个0.7:https://github.com/LearnBoost/Socket.IO-node-client

我刚刚在做一个有类似需求的项目:一个充当 Socket.io 服务器的节点服务器,并通过适当的websocket连接到另一个服务。我在 Node 中使用了 websocket 客户端的 ws 模块。

请注意,正如Josh上面提到的,Socket.io 是Web套接字之上的协议。

相关内容

  • 没有找到相关文章

最新更新