1.0.6 • Published 1 year ago

nestjs-http-timeout v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year 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

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago