net.createConnection(options[, connectListener])
添加于:v0.1.90
参数
options
<Object> 必需。将传递给new net.Socket([options])
socket.connect(options[, connectListener])
connectListener
<Function>net.createConnection()
'connect'
- 返回: <net.Socket> 新创建的用于启动连接的套接字。
有关可用选项,请参阅
和 new net.Socket([options])
。socket.connect(options[, connectListener])
其他选项:
timeout
<number> 如果设置,将用于在创建套接字之后但在开始连接之前调用socket.setTimeout(timeout)
以下是
部分中说明的回显服务器客户端示例:net.createServer()
const net = require('node:net');
const client = net.createConnection({ port: 8124 }, () => {
// 'connect' listener.
console.log('connected to server!');
client.write('world!\r\n');
});
client.on('data', (data) => {
console.log(data.toString());
client.end();
});
client.on('end', () => {
console.log('disconnected from server');
});
要连接套接字 /tmp/echo.sock
:
const client = net.createConnection({ path: '/tmp/echo.sock' });
相关用法
- Node.js net.createServer([options][, connectionListener])用法及代码示例
- Node.js net.isIP(input)用法及代码示例
- Node.js net.isIPv6(input)用法及代码示例
- Node.js net.Server.address()用法及代码示例
- Node.js net.Server.listen()用法及代码示例
- Node.js net.Socket.setTimeout(timeout[, callback])用法及代码示例
- Node.js net.BlockList.check(address[, type])用法及代码示例
- Node.js net.isIPv4(input)用法及代码示例
- Node.js new assert.AssertionError(options)用法及代码示例
- Node.js new AsyncResource(type[, options])用法及代码示例
- Node.js new stream.Duplex(options)用法及代码示例
- Node.js new stream.Readable([options])用法及代码示例
- Node.js new Console(options)用法及代码示例
- Node.js new URLSearchParams(obj)用法及代码示例
- Node.js new crypto.Certificate()用法及代码示例
- Node.js new stream.Writable([options])用法及代码示例
- Node.js new URLSearchParams(iterable)用法及代码示例
- Node.js new Agent([options])用法及代码示例
- Node.js new vm.SourceTextModule(code[, options])用法及代码示例
- Node.js new stream.Transform([options])用法及代码示例
- Node.js new PerformanceObserver(callback)用法及代码示例
- Node.js new URL(input[, base])用法及代码示例
- Node.js new URLSearchParams(string)用法及代码示例
- Node.js new assert.CallTracker()用法及代码示例
- Node.js ServerHttp2Stream http2stream.pushStream(headers[, options], callback)用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 net.createConnection(options[, connectListener])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。