NextJSNextJSNextJS - Error HandlingNext.js divides errors into two main types : Expected errors → normal situations that can happen…October 03, 2023 1 min
NextJSNextJSNextJS - Caching & RevalidatingWhen a page fetches data (API, DB, etc.), doing the work every request is slow . So Next.js can…October 02, 2023 1 min
NextJSNextJSNextJS - Updating DataWith Server Functions (and Server Actions), you can mutate data directly on the server Because it…October 01, 2023 1 min
NextJSNextJSNextJS - Data FetchingServer Components Server Components are the default in the App Router. Because they run on the…September 06, 2023 1 min
NextJSNextJSNextJS - Cache ComponentsCache Components (opt-in via cacheComponents: true ) introduce a rendering model called: Partial…September 05, 2023 1 min
NextJSNextJSNextJS - Server vs Client ComponentsNext.js splits your React tree across two environments: Server Components → Run on the server for…September 04, 2023 2 min