1.0.6 • Published 3 years ago

nestjs-http-timeout v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

nestjs-http-timeout

HTTP Decorator & Interceptor for NestJS

Installation

npm install nestjs-http-timeout

How to Implement?

Endpoint Based Timeout

import { RequestTimeout } from 'nestjs-http-timeout';

@RequestTimeout(5000)
@Get('hello')
async helloWorld() {
   ...
}

Global Timeout

// main.ts

import { TimeoutInterceptor } from 'nestjs-http-timeout';
...
app.useGlobalInterceptors(new TimeoutInterceptor(10000));
...
1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago