Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是来自nodejs文档:
net模块为您提供了一个异步网络包装器。
我的理解是net模块是本机内核协议实现(TCP/IP、UDP ...)和套接字接口的包装器?
我对吗 ?谢谢。
是的。net 模块为您提供了一个异步网络包装器。它包含用于创建服务器和客户端(称为流)的方法。您可以使用 require('net'); 包含此模块;