Nodejs - net 或 http 模块

发布于 2024-11-02 08:14:00 字数 107 浏览 1 评论 0原文

我正在用nodejs做聊天系统。要创建节点服务器,我可以使用 nethttp 模块。那么使用它们的区别和好处是什么?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅沫记忆 2024-11-09 08:14:00

http 构建在 net 之上(它处理底层 HTTP 的 TCP 层)。

我想你的“聊天系统”将有基于浏览器的客户端,因为 Node.js 目前不太适合 GUI/桌面应用程序。如果是这种情况,您很可能希望使用 http

一个node.js聊天服务器已经建立 - node-chat。您可以在此基础上构建您的项目,或者查看其源代码以获取一些想法。

http is built on top of net (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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文