Skip to content

Is there a way to clear every room? #3988

Answered by darrachequesne
KtheVeg asked this question in Q&A
Discussion options

You must be logged in to vote

Hi! There is no built-in way, but you should be able to do it manually:

for (const [_, socket] of io.of("/").sockets) {
  for (const room of socket.rooms) {
    if (room !== socket.id) {
      socket.leave(room);
    }
  }
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by darrachequesne
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants