GRPC GUI client for GRPCurl
TL;DR; GRPCurl wrapper that auto detects methods and persists all history of requests, thanks to GRPCurl.
I created a simple GUI wrapper for GRPCurl, GRPCurl. This is a attempt at creating a simple tool that can speed up communication to the server. It has support for history, meaning anything you type and do will persist in a historic log and state.
Because GRPCurl uses reflection we can auto detect everything. You fill in the url of your server and the application auto detects the methods (thanks to GRPCurl). It has a history of what has been used before, so lets say you where on server.fantastic.com and using method myMethod.v1.beautiful/UnicornRainbows with { unicorns: true }. It will auto fill this in when clicking on the method or travelling to the server. It is meant to grossly simplify the interaction between you and GRPCurl.
To build from source, first checkout the code
Required tools to build native packages
npm run start
On Linux you should have some tools
Fedora based distro:
sudo dnf install dpkg-dev fakeroot
Debian based distro:
sudo apt-get install install rpm fakeroot
On the project folder, run
npm install
Then generate the native package(s)
npm run make
The output should be at out/make/
There is a first version (0.0.2), there might be bugs. If there are please file a ticket.