# NestJs Notes
⚡️ Tags:
📍Framework
📍NestJS
# Request lifecycle
@UseGuards(AuthGuard)
@UseInterceptors(LoggingInterceptor)
app.useGlobalPipes(new ValidationPipe());
app.useGlobalFilters(new HttpExceptionFilter()); @Catch(HttpException)