Next.js LIfecycle

Next.js app stages

2025-01-08

Next.js Lifecycle

Ref: GeeksforGeeks

Next.js app stages manage state, logic and optimization.

Initialize

Initial state setup and config. The initial app load.

Render

Fetch data (initial, server-side and static props) and render

Called during initial, and subsequent updates

returns JSX component representation

Update

Get pre-render paths for dynamic routes Get data for rqd changes

Unmount

Cleanup resources

 

Copyright @ 2024 Anne Brown