node net创建的tcp连接实例如何关闭

var server = net.createServer(function(connection) { 
   console.log('client connected');

   connection.on('end', function() {
      console.log('客户端关闭连接');
   });

   connection.write('Hello World!\r\n');
    
   connection.pipe(connection);

});

server.listen(8080, function() { 
  console.log('server is listening');
});

现在想手动关闭connection,要用什么方法呀,找了好久....


长风秋雁
浏览 583回答 1
1回答

jeck猫

connection.destroy()可以关掉
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js