In the 0.9.x version, we can get socket by ID like this:
io.sockets.socket(socketId)
But in 1.0.x we can't. How to find a socket by id in 1.0.x?
In the 0.9.x version, we can get socket by ID like this:
io.sockets.socket(socketId)
But in 1.0.x we can't. How to find a socket by id in 1.0.x?
Socket.io Version 2.0.3+
For socket.io 1.0 use:
For 0.9 its io.sockets.sockets[socketId] and not io.sockets.socket[socketId]
you can also use like: