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

Router params inside websocket handler #715

Open
1 task done
IlyaSemenov opened this issue Mar 21, 2024 · 0 comments
Open
1 task done

Router params inside websocket handler #715

IlyaSemenov opened this issue Mar 21, 2024 · 0 comments

Comments

@IlyaSemenov
Copy link

Describe the feature

I am using websockets in a Nuxt app, and I put my event handler in a parameter-based route, such as server/api/foo/[id]/ws.ts

I would like to be able to easily access id in websocket hooks, similar to how I can access it in "normal" event handlers with getRouterParam.

The code may look like:

export default defineWebSocketHandler({
  open(peer) {
    console.log("ID is", getPeerRouterParam(peer, "id")) // <--- imaginary code, doesn't work.
  },
}

Additional information

  • Would you be willing to help implement this feature?
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

No branches or pull requests

1 participant