Skip to content

Instantly share code, notes, and snippets.

@clonn
Created November 16, 2012 06:29
Show Gist options
  • Save clonn/4084802 to your computer and use it in GitHub Desktop.
Save clonn/4084802 to your computer and use it in GitHub Desktop.
socket.io send message to specific client, and remove item from array.
// remove a room key
client.on('disconnect', function (data) {
var key = room.indexOf(client.id);;
room.splice(key, 1);
io.sockets.socket(adminId).emit('query-room-list', room);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment