Skip to content

Conversation

@MiopeCiclope
Copy link

Adds a method that works similarly to the old version of getWss, allowing to filter clients of a URL and create broadcast to clients subscribed to a given WebSocket URL

}

const clients = Array.from(wsServer.clients);
return clients ? clients.filter((client) => client.wsUrl === url) : [];

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This won't work properly for use-cases that use URL path parameters

ex: if you have something like /chat/:id, you would want to get all clients for a specific ID

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants