gRPC API Guide
2025-07-27
gRPC API Guide
Protocol buffer definitions live in webapp/protos/
. After editing a .proto
file run:
npm run generate:grpc
This writes TypeScript clients to webapp/services/grpc/
. You can then use helpers from grpcClient.ts
:
import { sayHello } from '@/services/grpcClient'const msg = await sayHello('Codex')console.log(msg)