nestjs-conditional-exception-filter
TypeScript icon, indicating that this package has built-in type declarations

1.2.1 • Public • Published

nestjs-conditional-exception-filter

npm version npm downloads

A helper package to allow creating exception filters based on conditions on the exception!

Usage

npm install nestjs-conditional-exception-filter
import { Catch, ExceptionFilter } from '@nestjs/common'
import { filter } from 'nestjs-conditional-exception-filter'

@Catch(
  filter({
    // Define for which instance this filter should be applied.
    // This is optional, so your filter no longer needs to work over class instances only
    for: YourErrorClass, 
    // And add your refined condition in this callback predicate function
    when: (err) => true
  })
)
export class YourFilter implements ExceptionFilter {
  // ...
}

Readme

Keywords

Package Sidebar

Install

npm i nestjs-conditional-exception-filter

Weekly Downloads

58

Version

1.2.1

License

MIT

Unpacked Size

3.81 kB

Total Files

5

Last publish

Collaborators

  • micalevisk