eclipse-vertx / vertx-grpc

Development of the gRPC component for Eclipse Vert.x
Eclipse Public License 2.0
42 stars 23 forks source link

gRPC Web #55

Closed vietj closed 6 months ago

vietj commented 1 year ago

Support grpc-web protocol in Vert.x gRPC Server

GregYeo commented 10 months ago

The Spring Framework also has gRPC support modules but they are not implementing grpc-web itself.

But that can be run by envoy proxy .

I am introduced it for my client. And it works very well and gRPC server generally does not need to care how gRPC Web works. If someone needs it right now. The envoy proxy is available right away. I put envoy proxy as side car of gRPC Server in AWS Fargate. So there is not so much tasks to do.

Nice proposal but gRPC Web is wrapper layer itself to use gRPC. So I think the middleware(or reverse proxy) is more reasonable solution for it until gRPC could support browser natively.

vietj commented 10 months ago

thanks for sharing your opinion @GregYeo