gurl-rpc
v1.0.1
Published
Simple gRPC client, designed for gRPC server testing.
Downloads
3
Readme
gurl-rpc
Simple gRPC client, designed for gRPC server testing.
Installation
npm i -g gurl-rpc
Usage
Usage: gurl-rpc [options]
Options:
--proto <path> path to a protobuf file (required)
--host host on which grpc server is running (required)
--rpc target rpc enpoint (required)
--request request payload in json format (required)
--help output usage information
Consider siple example
gurl-rpc --host localhost:9090 \
--proto src/main/resources/assets/service.proto \
--rpc SayHello \
--request '{"name": "John Doe"}'