grpc-node
grpc-node copied to clipboard
gRPC for Node.js
### Problem description A user in https://github.com/googleapis/nodejs-recaptcha-enterprise/issues/231 is having trouble connecting to GCP APIs with with a proxy. They've shared a full version of their error log here: https://github.com/googleapis/nodejs-recaptcha-enterprise/files/6709916/recaptcha.error.txt I...
Having the issue on Fedora 29 Node: 10.16.0 npm: 6.9.0 Console output (abridged): npm install grpc > [email protected] install /home/gary/Source/storex_graphql_server/node_modules/grpc > node-pre-gyp install --fallback-to-build --library=static_library node-pre-gyp WARN Using needle for...
### Problem description here is error log: ``` Error: 14 UNAVAILABLE: Stream refused by server at Object.callErrorFromStatus (/usr/src/app/node_modules/@grpc/grpc-js/build/src/call.js:31:26) at Object.onReceiveStatus (/usr/src/app/node_modules/@grpc/grpc-js/build/src/client.js:176:52) at Object.onReceiveStatus (/usr/src/app/node_modules/@grpc/grpc-js/build/src/client-interceptors.js:336:141) at Object.onReceiveStatus (/usr/src/app/node_modules/@grpc/grpc-js/build/src/client-interceptors.js:299:181) at /usr/src/app/node_modules/@grpc/grpc-js/build/src/call-stream.js:145:78 at...
### Problem description When trying to run `protoc` from the `[email protected]` package on linux, it fails with "No such file or directory". This also manifests as `ENOENT` when trying to...
### Problem description Conversation Error: { Error: 14 UNAVAILABLE: TCP Read failed at Object.exports.createStatusError (/relay/node_modules/grpc/src/common.js:91:15) at ClientDuplexStream._emitStatusIfDone (/relay/node_modules/grpc/src/client.js:233:26) at ClientDuplexStream._receiveStatus (/relay/node_modules/grpc/src/client.js:211:8) at Object.onReceiveStatus (/relay/node_modules/grpc/src/client_interceptors.js:1306:15) at InterceptingListener._callNext (/relay/node_modules/grpc/src/client_interceptors.js:568:42) at InterceptingListener.onReceiveStatus (/relay/node_modules/grpc/src/client_interceptors.js:618:8)...
hope grpc+FlatBuffers can be supported, thanks !
### Is your feature request related to a problem? Please describe. I've been struggling to get my head around the exact interactions between proto-loader, grpc-js and typescript. From what I...
### Is your feature request related to a problem? Please describe. I would like to call `proto-loader-gen-types` from TypeScript code. However, nothing is exported. ### Describe the solution you'd like...
Hi, I'm writing a rpc service like this: ```javascript const payload = {"foo": "bar"}; const getJobList = (call, callback) => { callback(null, payload); } ``` Here `payload` is an object....
### Problem description A server consuming a bidirectional (Duplex) stream using an async iterator and calling `call.end()` after the iterator loop completes leaves the client hanging open. The only workaround...