Re: [go-nuts] Re: gRPC for web applications with millions of users

2022-12-02 Thread 'Sean Liao' via golang-nuts
See also https://buf.build/blog/connect-web-protobuf-grpc-in-the-browser - sean On Fri, Dec 2, 2022 at 4:46 PM Brian Candler wrote: > Just checking that you came across this already? > https://grpc.io/blog/state-of-grpc-web/ > > gRPC can't be implemented natively in browsers. You can sending s

[go-nuts] Re: gRPC for web applications with millions of users

2022-12-02 Thread Brian Candler
Just checking that you came across this already? https://grpc.io/blog/state-of-grpc-web/ gRPC can't be implemented natively in browsers. You can sending something gRPC-like and then convert it back to gRPC at the server. But for bi-directional streaming, I think you need to look at Websockets o