An open API service indexing awesome lists of open source software.

https://github.com/chqrd/nest-health

Add /health endpoints to your NestJS project
https://github.com/chqrd/nest-health

nestjs

Last synced: about 2 months ago
JSON representation

Add /health endpoints to your NestJS project

Awesome Lists containing this project

README

          

# nest-health

This NestJS module adds a `/health` endpoint to your project.

## Installation

```typescript
import { HealthModule } from "@chqrd/nest-health";
import { Module } from "@nestjs/common";

@Module({
imports: [HealthModule],
})
export class AppModule {}
```

### Project setup

```bash
$ npm install
```

### Compile and run the project

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod
```