socket.io join does not add room code example
Example 1: socket emit to specific room using nodejs socket.io
io.on('connection', function(socket){ socket.to('some room').emit('some event');});
Example 2: socket emit to specific room using nodejs socket.io
io.to('room1').to('room2').to('room3').emit('some event');