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

An improved Node.js gRPC client

Results 23 grpc-caller issues
Sort by recently updated
recently updated
newest added

consider supply some hook ? . ex. before call remote function or after call. i expect use this able to add opentracing logic

I'm trying to use this in my TS project but I couldn't find the type declarations. Is TS not supported yet? In case this isn't already there, I'm willing to...

Fixed some small issues related to passing in a grpc proto as opposed to reading it in from a file.

I want to define the retries in one place on the client and then all methods should respect the retry number however this is not working as expected. Here is...

I've tried all the possible variation of metadata (grpc metadata, row json), tried with callback, without callback (await), but it's seems like it's not sending any metadata. On the official...

I have some code which is using the static way to promisify the gRPC calls. However if I do them twice in a raw the second time, the streaming APIs...

Is there any function or settings on client for reconnecting?

When I hit error at client.sayHello() I got undefined err: ``` try { const res = await client.sayHello({ name: 'Bob' }) } catch (err) { throw err } ``` Anyway...