Skip to content

Instantly share code, notes, and snippets.

@knrt10
Created May 11, 2018 07:50
Show Gist options
  • Save knrt10/497b03eebd7d641260fa9d76eab38d18 to your computer and use it in GitHub Desktop.
Save knrt10/497b03eebd7d641260fa9d76eab38d18 to your computer and use it in GitHub Desktop.
emit events when client joins
// Emitting client info on joining the room
_socket.on('room', function (val) {
_socket.emit('join', {roomName: val.value, username: data.username, number: data.number, randomNumber: data.randomNumber})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment