grpc-node
grpc-node copied to clipboard
gRPC for Node.js
### Problem description The gRPC statically generated code I am receiving crashes on `undefined` in request unmarshalling because the generated gRPC method for deserializing request messages in the `_grpc_pb.js` is...
### Problem description In TLS connection scenaio, the client implemented by nodejs(which depends on grpc-js) cannot connect to server. I got the error messages from c++ server `ssl_transport_security.cc:1847] No match...
### Problem description A clear and concise description of what the problem is. For Redhat Linux 8.4(Ootpa) grpc_tools_node_protoc and other grcp command is failing ### Reproduction steps Give very precise...
### Is your feature request related to a problem? Please describe. I need to put in custom logic to verifying the server certificate from the client side (and I also...
It look code at below link is breach Barbara Liskov's substitution principle: https://github.com/grpc/grpc-node/blob/db39ba245c3872e3b5d57a296d744cce63e23bf2/packages/grpc-js/src/server-call.ts#L234 It overrides behaviour of method 'end' https://nodejs.org/api/stream.html#writableendchunk-encoding-callback
### Is your feature request related to a problem? Please describe. I'd like to call `close` on all grpc clients when the app is shutting down, and wait for the...
### Problem description I add a interceptor for grpc client to log : ``` const interceptor = function(options, nextCall) { const requester = { start: function(metadata, listener, next) { var...
### Is your feature request related to a problem? Please describe. We have a python based grpc server and a node js server which acts as the grpc client. Currently...
In core GRPC support for reloading SSL credentials on the server side was added in https://github.com/grpc/grpc/pull/12644. This would also be useful in grpc-node for the same reasons.