-
Notifications
You must be signed in to change notification settings - Fork 81
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
Add gRPC Server Reflection support #507
Comments
This would be super handy! I'm commenting here in the hopes that it helps get it on the roadmap! :) |
+1 on this one, let's hope we get some more feature parity between the Node and Go ConnectRPC libraries. Still very happy with the current Node implementation, this would just make it more complete. Thank you to the contributors and the ConnectRPC team as a whole. |
+1 this would greatly improve integration into things like postman etc... which many of our dev use on their current REST apis. There is a reference implementation available on the https://github.com/grpc/grpc-node project |
Any updates on this? |
+1 |
1 similar comment
+1 |
Is your feature request related to a problem? Please describe.
gRPC and connect-go support a server-side reflection API that serves protobuf schema information to clients. As of now,
connect-node
does not support this feature.This feature would be useful as various gRPC debugging utilities can use it to grab schema information on-demand.
Describe the solution you'd like
Ideally,
connect-node
would have an optional implementation of serverside reflection, including the necessary code generation inprotobuf-es
to support this (as needed.)Additional context
gRPC Server Reflection Protocol
connect-go grpcreflect implementation
The text was updated successfully, but these errors were encountered: