No description
  • Go 89.6%
  • Just 10.4%
Find a file
2026-04-23 21:49:38 +03:00
cmd init 2026-04-23 21:49:38 +03:00
proto init 2026-04-23 21:49:38 +03:00
go.mod init 2026-04-23 21:49:38 +03:00
go.sum init 2026-04-23 21:49:38 +03:00
Justfile init 2026-04-23 21:49:38 +03:00
readme.md init 2026-04-23 21:49:38 +03:00

playing with grpc

cool, can I add grpc to my resume now?

usage

Start grpc server with

go run cmd/server/main.go

and then test it with grpcurl

grpcurl -plaintext -d '{"name": "Dan"}' localhost:5000 proto.HelloService/Hello

or start client with

go run cmd/client/main.go

and open http://localhost:5001/hello?name=Dan in the browser.