grpc-web icon indicating copy to clipboard operation
grpc-web copied to clipboard

gRPC Web implementation for Golang and TypeScript

Results 151 grpc-web issues
Sort by recently updated
recently updated
newest added

The methods [`IsGrpcWebRequest`](https://pkg.go.dev/github.com/improbable-eng/grpc-web/go/grpcweb#WrappedGrpcServer.IsGrpcWebRequest) and [`IsGrpcWebSocketRequest`](https://pkg.go.dev/github.com/improbable-eng/grpc-web/go/grpcweb#WrappedGrpcServer.IsGrpcWebSocketRequest) have `WrappedGrpcServer` as a receiver, but they do not use `WrappedGrpcServer`. They could just be functions: `grpcweb.IsGrpcWebRequest()` etc. I am integrating this library into a...

Bumps [terser](https://github.com/terser/terser) from 5.5.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies
size/XXL
javascript

Bumps [terser](https://github.com/terser/terser) from 5.5.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies
size/XXL
javascript

Bumps [terser](https://github.com/terser/terser) from 5.5.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies
size/XXL
javascript

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0. Release notes Sourced from jsdom's releases. Version 16.7.0 Added AbortSignal.abort(). (ninevra) Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)...

dependencies
size/XXL
javascript

**Versions of relevant software used** 0.15.0 **What happened** Error thrown because of empty grpc-message header **What you expected to happen** Request completes successfully because empty grpc-message comes with OK status...

kind/bug

Update-1: I decided to try running my grpc server behid the `grpcwebproxy` service and have made SOME progress but I'm still getting errors. Logs from the `grpcwebproxy` service: ``` WARN[0002]...

Bumps [eventsource](https://github.com/EventSource/eventsource) from 1.0.7 to 1.1.1. Changelog Sourced from eventsource's changelog. 1.1.1 Do not include authorization and cookie headers on redirect to different origin (#273 Espen Hovlandsdal) 1.1.0 Improve performance...

dependencies
size/XXL
javascript

Currently, if using grpc-web with client-streaming (and bi-directional) endpoints one has to use the the websocket implementation provided by grpc-web since [no fetch implementation supports client streaming yet](https://github.com/whatwg/fetch/issues/229). The websocket...

enhancement
help-wanted

Dear, I was wondering, could a websocket be multiplexed so it really mirrors the java/go api? So you create 1 connection per stub, this would allow grpc-web to have a...