Skip to content

Code-Hex/testing-grpc

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
cmd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

testing-grpc

A server and client developed to understand the behavior of gRPC. Mainly intended to be useful for application development using gRPC.

asciicast

(ascii-art is generated by neo-cowsay)

build

$ make build

# startup server (default port 3000)
$ ./bin/server

# startup client (default port 3000)
$ ./bin/client

If you want to change port, you can change the environment variable of PORT. and you can use .env file :D

supported

  • Unary
    • status
    • error details
    • metadata
    • health check
    • interceptor
    • stats
      • If you want to disable logging, please set LOG_LEVEL to INFO. see .env file.
    • channelz

gRPC documents