DEV Community

Cover image for I wrote a gRPC GUI client with go
crossoverJie
crossoverJie

Posted on

I wrote a gRPC GUI client with go

I would like to introduce you to a gRPC client tool(pgt) for your own use, it is used similarly to postman/bloomrpc.

introduce

introduce

Not only that, it also supports http/gRPC cli benchmark testing.

introduce

For more functions usage and introduction. please refer to the project home page:
https://github.com/crossoverjie/ptg

Why create it?

There are several similar gRPC client like this:

But they each have something I am not comfortable with:

  • bloomrpc: it has the fatal disadvantage of not supporting int64, which can lead to loss of accuracy.
  • grpcui: there is no downside to it, the main problem is that I am used to using the browser tab at work, which makes it less convenient to use it in the browser.

bloomprc

So i wanted to make my own int64 compatible client tool to make my work more comfortable.

If you have a similar problem, I hope this can help you.

Top comments (0)