request lifecycle என்பது NestJS-இல் ஒரு request கடந்து செல்லும் கூறுகளின் துல்லியமான வரிசை — middleware, guards, interceptors, pipes, handler, பின் மீண்டும் interceptors, மற்றும் errors-இல் exception filters. சரியான வரிசையை அறிவது ஒவ்வொரு logic-ம் எப்போது இயங்குகிறது என்பதை புரிந்துகொள்ள முக்கியம்.
முழு வரிசை
Incoming Request
│
▼
1. MIDDLEWARE (Express-style; raw req/res; runs first)
│
▼
2. GUARDS (authorization — return true to continue, false/throw to block)
│
▼
3. INTERCEPTORS (pre) (logic BEFORE the handler — start timing, etc.)
│
▼
4. PIPES (validate/transform the handler's arguments — DTO validation)
│
▼
5. ROUTE HANDLER (your controller method runs)
│
▼
6. INTERCEPTORS (post) (logic AFTER the handler — transform the response)
│
▼
Response
✗ If an exception is thrown ANYWHERE above →
7. EXCEPTION FILTERS (catch it and format the error response)
