socket.io send message to specific client code example

Example 1: How to send a message to a particular client with socket.io

io.sockets.in('[email protected]').emit('new_msg', {msg: 'hello'});

Example 2: socket emit to specific room using nodejs socket.io

io.on('connection', function(socket){  socket.to('some room').emit('some event');});

Example 3: socket io emit to specific client

Let me make it simpler with socket.io rooms. request a server 
with a unique identifier to join a server. here we are using 
an email as a unique identifier.

Client Socket.io
socket.on('connect', function () {
  socket.emit('join', {email: [email protected]});
});
When the user joined a server, create a room for that user

Server Socket.io
io.on('connection', function (socket) {
   socket.on('join', function (data) {    
    socket.join(data.email);
  });
});
Now we are all set with joining. let emit something to from the 
server to room, so that user can listen.

Server Socket.io
io.to('[email protected]').emit('message', {msg: 'hello world.'});

Let finalize the topic with listening to message event to the 
client side
socket.on("message", function(data) {
  alert(data.msg);
});

The reference from Socket.io rooms

Example 4: socket emit to specific room using nodejs socket.io

io.on('connection', socket => {  socket.on('disconnecting', () => {    const rooms = Object.keys(socket.rooms);    // the rooms array contains at least the socket ID  });  socket.on('disconnect', () => {    // socket.rooms === {}  });});

Tags:

Misc Example