A demo for exposing multiple services from a single gRPC server.
npm run build
Start the microservice:
npm run run:calc
Start the gateway:
npm run run:gateway
- POST /arithmetic/sum
- POST /arithmetic/multiply
- POST /bitwise/and
- POST /bitwise/or
- POST /bitwise/xor
Body for all endpoints:
{
values: number[];
}