grpc-websocket-proxy Wrap your grpc-gateway mux with this helper to expose streaming endpoints over websockets. On the wire this uses newline-delimited json encoding of the messages. Usage: mux := runtime.NewServeMux() opts := []grpc.DialOption{grpc.WithInsecure()} if err := echoserver....
grpc-websocket-proxy/wsproxy" "golang.org/x/net/context" "google.golang.org/grpc" ) var ( grpcAddr = flag.String("grpcaddr", ":8001", "listen grpc addr") httpAddr = flag.String("addr", ":8000", "listen http addr") debugAddr = flag.String("debugaddr", ":8002", "listen ...