1.3.0 • Published 2 months ago

@voiceflow/nestjs-timeout v1.3.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

NestJS Timeout

A NestJS interceptor that will error a request after a timeout is exceeded.

Installation

yarn add @voiceflow/nestjs-timeout

Usage

import { Controller } from '@nestjs/common';
import { TimeoutInterceptor } from '@voiceflow/nestjs-timeout';

@Controller()
// Timeout after 30 seconds
@UseInterceptors(new TimeoutInterceptor(30 * 1000))
export class MyController {
  /* ... */
}
1.3.0

2 months ago

1.2.4

5 months ago

1.2.3

6 months ago

1.2.2

6 months ago

1.2.0

2 years ago

1.2.1

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago