grpc-node
grpc-node copied to clipboard
gRPC for Node.js
What version of gRPC and what language are you using? gRPC version = 1.8.14, Language = javascript; What operating system (Linux, Windows,...) and version? Linux What did you do? Please...
I'm periodically experiencing the following error after the stream has been running for some time: Stream error encountered: Error: 13 INTERNAL: Received RST_STREAM with code 1. Any help would be...
Hi! Before I start asking I have to say that it was my pleasure to read through the code of grpc-node library. Splendid work, thank you! ### Is your feature...
Would it be possible to release new versions of the tooling packages like grpc-tools and grpc-health-check with the latest releases? Or do they follow another release cadence?
### Is your feature request related to a problem? Please describe. @grpc/grpc-js needs support some grpc call options that @grpc/grpc-node supports. ### Describe the solution you'd like Support - 'grpc.http2.max_ping_strikes'...
### Problem description When using proto-loader-gen-types for ts-types generating, the root `ProtoGrpcType` type is not declared to `extends grpc.GrpcObject`. Because of that, when I `grpc.loadPackageDefinition(...)`, I cannot cast it directly...
### Is your feature request related to a problem? Please describe. I am interested in using `@grpc/grpc-js` for communication between an AWS Nitro Enclave and its host. There is a...
### Problem description Update to [email protected] Version, experiencing continuous memory growth issue ### Reproduction steps nodejs: const grpc = require('@grpc/grpc-js'); const protoLoader = require('@grpc/proto-loader'); const packageDefinition = protoLoader.loadSync( proto文件路径, {...
### Is your feature request related to a problem? Please describe. This might already be possible but I haven't found a way to do it. Please advice. What I would...
Generated interface ProtoGrpcType is in fact an extension of grpc.GrpcObject, but this inheritance wasn't declared until now. This forced users to cast `grpc.loadPackageDefinition(...): grpc.GrpcObject` first to `as unknown` and only...