If node server is down. How to get error handling on socket.io

后端 未结 2 2040
不知归路
不知归路 2021-01-07 07:41

How can i detect server status ?

var socket= io.connect(\'http://nodeserver.com:3000\');

Here is my code. If nodeserver.com:3000

2条回答
  •  醉梦人生
    2021-01-07 08:28

    for checking "disconect" of a socket you can you this code :

    io.socket.on('connect', function(){
      console.log('connected to server ...');
    
    });
    
    io.socket.on('disconnect', function(){
      console.log('Lost connection to server');
    });
    

提交回复
热议问题