1

I'am building a chat application in node.js. Now I'am receiving new messages with ajax. I am sending request every 3 seconds. I noticed that stackoverflow doesn't send any requests to fetch new data. SO opens one stream ws://sockets.ny.stackexchange.com/ (status 101) and in this way retrieves new content (like reputation, new comments, new posts). How to do this ?

4

1 回答 1

2

ws://协议代表 websockets。您可以在此Wikipedia 文章中阅读更多相关信息。你可以在这个问题中找到一些关于如何开始使用 websocket的指导,而这个问题列出了所有支持它们的浏览器。

最后,以下问题是 nodejs 所有可用库的社区 wiki: 哪个 websocket 库与 Node.js 一起使用?

正如 Dandavis(出色地)指出的那样,socket.io 是一个非常受欢迎的库,尽管我没有亲自尝试过。然而,它确实有更广泛的支持(如本网站上的大量问题所示)

于 2013-06-27T20:44:56.273 回答