postman-app-support
postman-app-support copied to clipboard
hello! why don't featuring socket.io room feature?
Is there an existing request for this feature?
- [X] I have searched the existing issues for this feature request and I know that duplicates will be closed
Is your feature request related to a problem?
There is no functionality in Postman for joining rooms provided by socket.io.
Describe the solution you'd like
I wish Postman had the capability to establish a socket connection and join a specific room. (I confirmed the functionality by implementing separate frontend code since it doesn't work in Postman.)
Describe alternatives you've considered
No response
Additional context
- server code
@SubscribeMessage('join_room')
handleRoomJoin(@MessageBody() roomName: string, @ConnectedSocket() client: Socket): void {
console.log(
Client ${client} request to join room: ${roomName}
)
client.join("1") console.log(joining completed
) }- front code const joinRoom = () => { if (socket) { socket.emit('join_room', { room: "1" }); setJoinedRoom("1"); } else { console.log("socket not connected"); } };
I second this request! Would be really useful!
Yeah this would be a great feature!
Looking forward to have this feature 👀