net(网络)
稳定性: 2 - 稳定
源代码: lib/net.js
net
模块用于创建基于流的 TCP 或 IPC 的服务器(net.createServer()
)与客户端(net.createConnection()
)。
使用方法如下:
const net = require('net');
Stability: 2 - Stable
Source Code: lib/net.js
The net
module provides an asynchronous network API for creating stream-based
TCP or IPC servers (net.createServer()
) and clients
(net.createConnection()
).
It can be accessed using:
const net = require('net');