Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers.
Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers. The main purpose for this tool is to invoke RPC methods on a gRPC server from the command-line. gRPC servers use a binary encoding on the wire (protocol buffers, or protobufs for short). So they are basically impossible to interact with using regular curl (and older versions of curl that do not support HTTP/2 are of course non-starters). This program accepts messages using JSON encoding, which is much more friendly for both humans and scripts.
Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers. The main purpose for this tool is to invoke RPC methods on a gRPC server from the command-line. gRPC servers use a binary encoding on the wire (protocol buffers, or protobufs for short). So they are basically impossible to interact with using regular curl (and older versions of curl that do not support HTTP/2 are of course non-starters). This program accepts messages using JSON encoding, which is much more friendly for both humans and scripts.
To install grpcurl, run the following command in macOS terminal (Applications->Utilities->Terminal)
sudo port install grpcurl
To see what files were installed by grpcurl, run:
port contents grpcurl
To later upgrade grpcurl, run:
sudo port selfupdate && sudo port upgrade grpcurl
Reporting an issue on MacPorts Trac
The MacPorts Project uses a system called Trac to file tickets to report bugs and enhancement requests.
Though anyone may search Trac for tickets, you must have a GitHub account in order to login to Trac to create tickets.