Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow client filter by websocket url #160

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

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