网络套接字连接
给定远程端口/主机,设置一个低级net.Socket。 与回调和连接超时!
npm安装
npm install --save @js-util/net-socket-connect
用法示例
PS:这是不完整的代码,您将需要针对您的实际用例进行修改。
// Load the module
const netSocketTimeout = require ( "@js-util/net-socket-connect);
// Create the server with the socket listening event
let remotesocket = netSocketTimeout(80, " 127.0 .0 .1 " , ( socket , err ) => {
if ( err ) {
console . error ( err ) ;
r
1