improbable-eng / grpc-web

gRPC Web implementation for Golang and TypeScript
Apache License 2.0
4.39k stars 436 forks source link

QUIC and HTTP3 support #1121

Closed lbensaad closed 2 years ago

lbensaad commented 2 years ago

Can this grpc-web implementation run over QUIC/HTTP3? And what about the grpc go wrapper and proxy, do they support QUIC/HTTP3?

johanbrandhorst commented 2 years ago

The client-side implementation just uses browser APIs, so it should support HTTP/3 if the browser does. The server side will not support HTTP/3 unless you use some custom HTTP library for it, as the standard library HTTP library in Go does not (yet).