Bird
Raised Fist0
NextJSframework~8 mins

Dynamic route segments in NextJS - Performance & Optimization

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Performance: Dynamic route segments
MEDIUM IMPACT
This affects the page load speed and server response time by determining how routes are matched and pages are rendered dynamically.
Creating dynamic routes for user profiles
NextJS
export async function getStaticPaths() {
  const res = await fetch('https://api.example.com/users');
  const users = await res.json();
  const paths = users.map(user => ({ params: { id: user.id.toString() } }));
  return { paths, fallback: 'blocking' };
}

export async function getStaticProps({ params }) {
  const res = await fetch(`https://api.example.com/users/${params.id}`);
  const user = await res.json();
  return { props: { user }, revalidate: 60 };
}

export default function UserPage({ user }) {
  return <div>{user.name}</div>;
}
Pre-generates pages at build or on-demand, reducing server load and speeding up page load for users.
📈 Performance GainReduces server blocking to near 0ms on repeat visits, improves LCP significantly
Creating dynamic routes for user profiles
NextJS
export async function getServerSideProps(context) {
  const { id } = context.params;
  const res = await fetch(`https://api.example.com/users/${id}`);
  const user = await res.json();
  return { props: { user } };
}

export default function UserPage({ user }) {
  return <div>{user.name}</div>;
}
Fetching data on every request blocks rendering and increases server load, causing slower LCP.
📉 Performance CostBlocks rendering for 200-500ms per request, increases server CPU usage
Performance Comparison
PatternDOM OperationsReflowsPaint CostVerdict
Server-side rendering on every requestMinimal DOM nodes1 reflow per page loadHigh paint cost due to blocking[X] Bad
Static generation with fallback blockingMinimal DOM nodes1 reflow per page loadLow paint cost, fast rendering[OK] Good
Rendering Pipeline
Dynamic route segments determine which page component to load based on URL parameters. When using server-side rendering, data fetching delays block the rendering pipeline. Static generation or incremental static regeneration moves data fetching to build time or background, reducing blocking.
Server-side Rendering
Data Fetching
HTML Generation
Client Hydration
⚠️ BottleneckData Fetching during server-side rendering
Core Web Vital Affected
LCP
This affects the page load speed and server response time by determining how routes are matched and pages are rendered dynamically.
Optimization Tips
1Avoid fetching data on every request for dynamic routes to reduce server blocking.
2Use getStaticPaths with fallback blocking or incremental static regeneration for better LCP.
3Cache dynamic pages when possible to speed up repeat visits.
Performance Quiz - 3 Questions
Test your performance knowledge
Which dynamic route pattern improves Largest Contentful Paint (LCP) the most in Next.js?
AUsing getStaticProps with getStaticPaths and fallback blocking
BUsing getServerSideProps to fetch data on every request
CFetching data on the client side after page load
DUsing client-side routing without prefetching
DevTools: Performance
How to check: Record a page load in DevTools Performance panel, filter for 'Server' and 'Rendering' events, and check for long blocking times during data fetching.
What to look for: Look for long 'Server' tasks or 'Idle' time before first contentful paint indicating blocking data fetch.

Practice

(1/5)
1. In Next.js, what does a file named [id].js inside the pages folder represent?
easy
A. A configuration file for setting environment variables
B. A static page that only matches the URL /id
C. A special API route for handling requests with an id parameter
D. A dynamic route segment that matches any value in the URL at that position

Solution

  1. Step 1: Understand Next.js routing conventions

    Files inside the pages folder define routes. Square brackets [] indicate dynamic segments.
  2. Step 2: Interpret [id].js meaning

    The file [id].js matches any URL segment in that position and passes it as a parameter named id.
  3. Final Answer:

    A dynamic route segment that matches any value in the URL at that position -> Option D
  4. Quick Check:

    Dynamic route = [segment] [OK]
Hint: Square brackets mean dynamic URL part in Next.js routes [OK]
Common Mistakes:
  • Thinking [id].js is a static page
  • Confusing dynamic routes with API routes
  • Assuming it matches only the literal 'id'
2. Which of the following is the correct syntax to define a dynamic route segment for a Next.js page that captures a username?
easy
A. pages/:username.js
B. pages/username.js
C. pages/[username].js
D. pages/{username}.js

Solution

  1. Step 1: Recall Next.js dynamic route syntax

    Dynamic segments use square brackets around the parameter name inside the pages folder.
  2. Step 2: Match syntax for username parameter

    The correct syntax is [username].js to capture the username dynamically.
  3. Final Answer:

    pages/[username].js -> Option C
  4. Quick Check:

    Dynamic segment uses [param] syntax [OK]
Hint: Use square brackets for dynamic route names [OK]
Common Mistakes:
  • Using colon or curly braces instead of square brackets
  • Naming the file without brackets for dynamic routes
  • Confusing dynamic routes with static filenames
3. Given the file structure:
pages/blog/[slug].js
and the URL /blog/hello-world, what will be the value of the slug parameter inside the page component?
medium
A. "hello-world"
B. "blog"
C. "[slug]"
D. undefined

Solution

  1. Step 1: Identify dynamic segment from file name

    The file [slug].js captures the URL segment after /blog/ as slug.
  2. Step 2: Match URL segment to parameter

    For URL /blog/hello-world, the segment hello-world is assigned to slug.
  3. Final Answer:

    "hello-world" -> Option A
  4. Quick Check:

    URL segment after folder = slug value [OK]
Hint: Dynamic segment captures URL part matching filename [OK]
Common Mistakes:
  • Using folder name as parameter value
  • Assuming parameter is the literal filename
  • Expecting undefined if parameter not explicitly passed
4. Consider this Next.js dynamic route file: pages/product/[id].js. Which of the following code snippets correctly accesses the id parameter inside the component?
medium
A. const router = useRouter(); const { id } = router.query;
B. const { id } = props.params;
C. const id = useParams().id;
D. const id = getIdFromUrl();

Solution

  1. Step 1: Recall how to access route params in Next.js pages

    Next.js uses the useRouter hook from next/router to access query parameters.
  2. Step 2: Identify correct syntax for extracting id

    The correct way is const router = useRouter(); const { id } = router.query;.
  3. Final Answer:

    const router = useRouter(); const { id } = router.query; -> Option A
  4. Quick Check:

    useRouter().query gives dynamic params [OK]
Hint: Use useRouter().query to get dynamic route params [OK]
Common Mistakes:
  • Using props.params which is not standard in Next.js pages
  • Using useParams() which is from React Router, not Next.js
  • Calling undefined functions like getIdFromUrl()
5. You want to create a nested dynamic route in Next.js to handle URLs like /dashboard/user/123 where 123 is a user ID. Which file structure correctly implements this?
hard
A. pages/dashboard/[user]/[id].js
B. pages/dashboard/user/[id].js
C. pages/dashboard/[id].js
D. pages/[dashboard]/user/[id].js

Solution

  1. Step 1: Analyze the URL structure

    The URL /dashboard/user/123 has three segments: dashboard, user, and a dynamic id.
  2. Step 2: Match file structure to URL segments

    Static segments dashboard and user are folders, and [id].js captures the dynamic user ID.
  3. Step 3: Verify options

    pages/dashboard/user/[id].js matches the folder structure exactly. Options B and D incorrectly treat static parts as dynamic. pages/dashboard/[id].js misses the user folder.
  4. Final Answer:

    pages/dashboard/user/[id].js -> Option B
  5. Quick Check:

    Static folders + [id].js for dynamic segment [OK]
Hint: Match URL parts to folders; dynamic parts use [param].js [OK]
Common Mistakes:
  • Making static parts dynamic segments
  • Omitting intermediate folders for static URL parts
  • Confusing order of folders and dynamic files