Nodejs - net 或 http 模块
我正在用nodejs
做聊天系统。要创建节点服务器,我可以使用 net
或 http
模块。那么使用它们的区别和好处是什么?
I'm doing chat system with nodejs
. To create a node server I can either use net
or http
module. So what is the difference and benefit of using each of them ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http
构建在net
之上(它处理底层 HTTP 的 TCP 层)。我想你的“聊天系统”将有基于浏览器的客户端,因为 Node.js 目前不太适合 GUI/桌面应用程序。如果是这种情况,您很可能希望使用
http
。一个node.js聊天服务器已经建立 - node-chat。您可以在此基础上构建您的项目,或者查看其源代码以获取一些想法。
http
is built on top ofnet
(which handles the TCP layer underlying HTTP).I imagine that your "chat system" will have browser-based clients, since node.js isn't great for GUIs/desktop apps at the moment. If that's the case, you'll most likely want to use
http
.A node.js chat server has already been made - node-chat. You could build yours on top of this, or take a look at its source code for some ideas.