-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Possibility of custom emitted events #283
Comments
Hey @sergeyyurkov1, thanks for the request. I’ll put in on the roadmap :) |
Hey @jonasgloning ,Can I take up this feature as i recently worked on implementing custom events in the modified version of the peerjs |
Yes, please! You can ping But to dampen expectations: our review times are pretty bad right now, so it might take some time to merge your proposal. |
@jonasgloning @sergeyyurkov1 @irgalamarr @igrigorik I need some clarification. The user should be able to emit and listen from both server side and client side. Right? And also should i write my own wrapper for custom events using web socket or can we consider using socket.io? |
I have a suggestion:
Because Peer.js server uses sockets under the hood for signalling, it would be great to have the ability to tap into the existing channel and emit custom events that could be accepted on the client side and vice versa (unless I'm missing something and this is already possible). I tried to experiment with EventEmitter's
newListener()
/addListener()
but to no avail (please pardon my inexperience). That would be useful for, say, room management and eliminate the need for opening a second connection (sockets or HTTP) for this sort of thing.Example:
peerServer.emit("test", ...)
on the server side ->peer.on("test", ...)
on the client.Thank you.
The text was updated successfully, but these errors were encountered: