grpc-node
grpc-node copied to clipboard
gRPC for Node.js
### Problem description int32 negative value turn into highest value int32 = 4294967295 ### Reproduction steps create a dart grpc server , and send a field with type int32 with...
### Is your feature request related to a problem? Please describe. In Typescript 4.4, the compiler option "exactOptionalPropertyTypes" was introduced. This feature distinguishes between the use of "?" and explicitly-defined...
It would be nice if there was a `grpc-tools` and/or `grpc_node_plugin` option that would generate client and server code that follows the ES6 Promise and ES7 async/await model. For example,...
I use Etcd for service discovery, but I haven't found any examples related to service discovery; Can you provide some cases?
### Problem description When i call the sendUnaryData callback function of the request handler as soon as the request comes , the grpc client successfully gets the response. When i...
Hi gurus, I am a newbee to node.js and grpc. So a good sample code is really appreciated. The grpc-node TLS sample code is in https://grpc.io/docs/guides/auth.html#nodejs not complete. For example,...
Currently when using grpc-node, any gRPC errors get raised with somewhat unhelpful stack traces (see https://github.com/grpc/grpc-node/issues/1250, https://github.com/grpc/grpc-node/issues/1661, https://github.com/grpc/grpc-node/issues/1808 for some examples): ``` Error: 14 UNAVAILABLE: Stream refused by server at...
This fixes couple typescript files failing to transpile with typescript 4.6.x. Typescript 4.6 enforces object's default type to be 'unknown', instead of 'any' and no implicit the argument value for...
Hi! I have error with compiling .proto having inner "[" char when use custom [mountebank](https://github.com/ozonru/mountebank-grpc/blob/master/src/mock.js#L40): `error: [2021-11-11T11:36:31.231Z] - [grpc:4542] /app/node_modules/@ozonru/mountebank-grpc/src/mock.js:40 throw new ProtoError(serviceOptions.file, error.message) ^ ProtoError: Could not loading a...
### Problem description How do I get defined custom options from messages and services? The messages and service objects from output has `options` properties, but it is always null. ###...