Socket.io Connected User Count

后端 未结 12 977
有刺的猬
有刺的猬 2021-01-30 20:24

I finally got socket.io to work properly, but I have encountered a strange problem.

I am not sure if this is the best way, but I am using:

io.sockets.cli         


        
12条回答
  •  無奈伤痛
    2021-01-30 21:20

    with socket.io 2.2.0 it's easier :

    io.on('connection', function (socket) {
        console.log( socket.client.conn.server.clientsCount + " users connected" );
    });
    

    cheers

提交回复
热议问题