使用socket.io或node.js制作聊天应用程序?
我对这两个人几乎一无所知。哪一个更好/更有效率,为什么?
我还查看了 node.js 示例,注意到他们为聊天室/聊天创建了一个服务器。
这是否意味着我需要为每个聊天/聊天室创建一个新服务器,或者是否有更好/更有效的方法来做到这一点?
谢谢!
I pretty much don't know anything about these two. Which one is better/more efficient and why?
Also I looked at the node.js example and noticed that they create a server for the chatroom/chat.
Does that mean I need to create a new server for every chat/chatroom or is there a better/more efficient way of doing this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Socket.io 是一个利用 Node.js 的库。将 Node.js 视为服务器上的 JavaScript。 Socket.io 为 websocket 服务器(服务器端)和 websocket 客户端(客户端)提供模块。
我不完全理解您关于为每个聊天/聊天室创建新服务器的问题。这完全取决于你。
Socket.io is a library which utilizes node.js. Think of node.js as an javascript on the server. Socket.io provides modules for websocket servers (server-side) and websocket clients (client-side).
I do not entirely understand your question about creating a new server for every chat/chatroom. That's entirely up to you.