@findingzumo/nestjs-health
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

Nestjs Health

A module used for exposing healthcheck endpoint for NestJS application.

Usage

  • Install this library by running
yarn add @findingzumo/nestjs-health
  • Import HealthModule into your AppModule
import { HealthModule } from '@findingzumo/nestjs-health';

@Module({
  imports: [HealthModule],
  controllers: [AppController],
  providers: [AppService],
})
export class AppModule {}
  • Start your application and verify the health by running
curl localhost:3000/api/health

Readme

Keywords

none

Package Sidebar

Install

npm i @findingzumo/nestjs-health

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

74.7 kB

Total Files

22

Last publish

Collaborators

  • findingzumo