リクエストライフサイクルは、リクエストがNestJSで通過するコンポーネントの正確な順序です — middleware、guard、interceptor、pipe、handler、そして再びinterceptor、エラー時にはexception filterです。正確な順序を知ることは、いつ各ロジックが実行されるかを理解するために重要です。
完全な順序
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)
