Agent skill
NestJS Microservices
gRPC, RabbitMQ standards and Monorepo contracts.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/transport
Metadata
Additional technical details for this skill
- labels
-
nestjs microservices grpc rabbitmq
- triggers
-
{ "files": [ "main.ts", "**/*.controller.ts" ], "keywords": [ "Transport.GRPC", "Transport.RMQ", "MicroserviceOptions" ] }
SKILL.md
Microservices & Transport Standards
Priority: P0 (FOUNDATIONAL)
Microservices communication patterns and transport layer standards.
- Synchronous (RPC): Use gRPC for low-latency, internal service-to-service calls.
- Why: 10x faster than REST/JSON, centralized
.protocontracts.
- Why: 10x faster than REST/JSON, centralized
- Asynchronous (Events): Use RabbitMQ or Kafka for decoupling domains.
- Pattern: Fire-and-forget (
emit()) for side effects (e.g., "UserCreated" -> "SendEmail").
- Pattern: Fire-and-forget (
Monorepo Architecture
- Contracts:
- Pattern: Store all DTOs,
.protofiles, and Interfaces in a Shared Library (libs/contracts). - Rule: Services never import code from other services. They only import from
contracts.
- Pattern: Store all DTOs,
- Versioning: Semantic versioning of messages is mandatory. Never change a field type; add a new field.
Exception Handling
-
Propagation: Standard
HttpExceptionis lost over Rpc/Tcp. -
Standard: Use
RpcExceptionand generic Filters.typescript// Global RPC Filter @Catch() export class RpcExceptionFilter implements RpcExceptionFilter<RpcException> { catch(exception: RpcException, host: ArgumentsHost): Observable<any> { return throwError(() => exception.getError()); } }
Serialization
- Message DTOs: Use
class-validatorjust like HTTP.- Config: Apply
useGlobalPipes(new ValidationPipe({ transform: true }))in theMicroserviceOptionssetup, not just HTTP app setup.
- Config: Apply
Didn't find tool you were looking for?