Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Created March 30, 2020 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamigibbs/f1892d5b6f25705839d2a491ec0d89e0 to your computer and use it in GitHub Desktop.
Save jamigibbs/f1892d5b6f25705839d2a491ec0d89e0 to your computer and use it in GitHub Desktop.
Refresh chat users
socket.on('userEnteredChat', () => {
io.emit('refreshChatUsers');
});
socket.on('userLeftChat', () => {
io.emit('refreshChatUsers');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment