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

gRPC for Node.js

Results 255 grpc-node issues
Sort by recently updated
recently updated
newest added

Given a service definition: ``` service ServiceApi { rpc Run(RunRequest) returns (RunResponse); } message RunRequest { string id = 1; } message RunResponse { string id = 1; } ```...

### Problem description hi, when the request volume is large, there will be several such errors. ``` Error: 14 UNAVAILABLE: Stream refused by server ``` It is difficult to reproduce...

package: @grpc/grpc-js

### Problem description The healthcheck module currently depends on the npm package grpc - ref: [package.json](https://github.com/grpc/grpc-node/blob/master/packages/grpc-health-check/package.json#L19) The [grpc package on npm](https://www.npmjs.com/package/grpc) states that it is deprecated and to use [@grpc/grpc-js](https://www.npmjs.com/package/@grpc/grpc-js)...

package: grpc-health-check

### Is your feature request related to a problem? Please describe. I need to organize a gRPC communication among services on transport agnostic basis ### Describe the solution you'd like...

package: @grpc/grpc-js

Lack of documentation on naming convention w/ json in grpc-js. ### Is your feature request related to a problem? Please describe. When using grpc-js w/ proto fields that have multiple...

package: @grpc/grpc-js

This is related to https://github.com/grpc/grpc-node/issues/1769#issuecomment-902053418. I want to set options like `grpc.keepalive_time_ms`, `grpc.keepalive_timeout_ms` and `grpc.keepalive_permit_without_calls`. How do I set them? Is this the way? ``` GRPC_ARG_KEEPALIVE_TIME_MS=10000 GRPC_ARG_KEEPALIVE_TIMEOUT_MS=10000 ``` Or can...

package: @grpc/grpc-js

### Problem description The link to the guide about generating code in the README.md file of the grpc-tools package is broken and leads to a page with a 404 error....

package: grpc-tools

### Is your feature request related to a problem? Please describe. The current version is 3.15.6 and the latest one is 3.20.1. ### Describe the solution you'd like Update protobuf...

package: grpc-tools

We are implementing a retry Intercepting call, so that in case of connection reset error the request is made again (ECONNRESET [{"message":"14 UNAVAILABLE: read ECONNRESET"}]). This retry interceptor works fine...

package: @grpc/grpc-js

Compilation errors when using the typescript 4.x toolchain. ### Reproduction steps 1. cd packages/grpc-js 2. npm install 3. npm install [email protected] 4. npm run build ### Environment - OS name,...

package: @grpc/grpc-js