Last updated 1 year ago
This library provides a module that adds a /health endpoint to your nest service. This endpoint can be used for Kubernetes health checks.
/health
import { Module } from '@nestjs/common'; import { HealthModule } from '@microservice-stack/nest-health'; @Module({ imports: [HealthModule], }) export class AppModule {}