socket io chanell id example
Example 1: socket io emit to socket id
io.to(socketid).emit('message', 'for your eyes only');
Example 2: get client id socket io
// NodeJs
// Socket.io get id client connected
io.on('connection', (socket) => {
console.log(socket.id) // This is ID session the client
});