List clients in a room?
See original GitHub issueIn 0.9.x we had a nice method .clients
. Is there any equivalent in 1.0?
Issue Analytics
- State:
- Created 9 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Socket IO Rooms: Get list of clients in specific room
javascript - Socket IO Rooms: Get list of clients in specific room - Stack Overflow. Stack Overflow for Teams – Start collaborating and...
Read more >Rooms | Socket.IO
A room is an arbitrary channel that sockets can join and leave. It can be used to broadcast events to a subset of...
Read more >Room List - Knowledge Base - Studio Designer
This help article will walk you through setting up your Room Lists. This section serves as a database for all the room lists...
Read more >Client-Server API - Matrix.org
Matrix makes use of pagination to allow clients to view extremely large datasets. These datasets are not limited to events in a room...
Read more >How to manage users in socket.io in Node.js ? - GeeksforGeeks
socket.broadcast.to(user.room) ... Text container will show the name of all users in the room. ... import io from 'socket.io-client' ;.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ChristopherHButler you can use the
fetchSockets()
method, which has been added in Socket.IO v4.0.0:Documentation: https://socket.io/docs/v4/server-instance/#Utility-methods
Perfect, thank you @darrachequesne !!