# NestJs Notes

⚡️ Tags: 📍Framework 📍NestJS

# Request lifecycle

lifecycle

@UseGuards(AuthGuard)
@UseInterceptors(LoggingInterceptor)

app.useGlobalPipes(new ValidationPipe());
app.useGlobalFilters(new HttpExceptionFilter()); @Catch(HttpException)