Skip to content

grpc capability

grpc adds a gRPC service layer to your Go service using buf tooling for schema management and code generation.

  • Protocol Buffer definitions
  • buf configuration for linting and code generation
  • Server setup with interceptors
  • Reflection for development tooling

Use grpc for internal microservice communication where you need strong typing, streaming, or high-performance RPC. It’s a better fit than REST for service-to-service calls within a controlled network.

Terminal window
verikt new my-service --language go --cap grpc
# or add to an existing service:
verikt add grpc

observability

OpenTelemetry traces and metrics for your gRPC service.

platform

Config, lifecycle, and structured logging.

health

Health and readiness endpoints for orchestrators.