Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.16 KB

README.md

File metadata and controls

56 lines (39 loc) · 1.16 KB

This repository is no longer maintained

Instead, I recommend for others to use grpcurl or evans.

grpcurl

CircleCI

super experimental

Installation

go install github.com/kazegusuri/grpcurl@latest

Usage

$ grpcurl
A handy and universal gRPC command line client

Usage:
  grpcurl [flags]
  grpcurl [command]

Available Commands:
  call          Call gRPC method with JSON
  help          Help about any command
  list_services List services and methods provided by gRPC server

Flags:
  -h, --help       help for grpcurl
  -k, --insecure   with insecure
  -v, --verbose    verbose output

Use "grpcurl [command] --help" for more information about a command.

List services

$ grpcurl -k ls localhost:8080
test.EchoService
grpc.reflection.v1alpha.ServerReflection

$ grpcurl -k ls localhost:8080 test.EchoService
test.Test.Echo

Call gRPC method

$ echo '{"Message": "hello"} | grpcurl -k call localhost:8080 test.EchoService.Echo
{"Message":"hello"}