DEV Community

Cover image for Data Fetching in Next.js 14: A Comprehensive Guide
Usman Ghani
Usman Ghani

Posted on

Data Fetching in Next.js 14: A Comprehensive Guide

Data fetching is a crucial aspect of building robust and dynamic applications. With the release of Next.js 14, developers have even more powerful tools at their disposal to fetch data efficiently and seamlessly. In this post, we will explore the various data fetching methods in Next.js 14, complete with examples and best practices.

Introduction to Data Fetching in Next.js 14

Next.js 14 brings several enhancements and new features to improve the developer experience and application performance. Data fetching is one of the core areas where Next.js excels, offering different methods to suit various needs, including static site generation (SSG), server-side rendering (SSR), and client-side fetching.

1. Static Site Generation (SSG) with getStaticProps

SSG allows you to generate HTML at build time, which can be served to clients instantly. This method is ideal for pages with content that doesn't change frequently.

Example

// pages/blog/[id].js
export async function getStaticProps({ params }) {
  const res = await fetch(`https://api.example.com/posts/${params.id}`);
  const post = await res.json();
  return { props: { post } };
}
Enter fullscreen mode Exit fullscreen mode

2. Server-Side Rendering (SSR) with getServerSideProps
SSR generates HTML on each request, making it perfect for dynamic content that changes often or requires authentication.
Example

// pages/profile.js
export async function getServerSideProps() {
  const res = await fetch('https://api.example.com/user/profile');
  const profile = await res.json();
  return { props: { profile } };
}
Enter fullscreen mode Exit fullscreen mode

3. Incremental Static Regeneration (ISR)
ISR allows you to update static content after the site has been built, ensuring your pages stay up-to-date without a full rebuild.

Example

// pages/products/[id].js
export async function getStaticProps({ params }) {
  const res = await fetch(`https://api.example.com/products/${params.id}`);
  const product = await res.json();
  return { props: { product }, revalidate: 60 };
}
Enter fullscreen mode Exit fullscreen mode

4. Client-Side Fetching with SWR
SWR (stale-while-revalidate) is a React hook library for client-side data fetching, ensuring your UI is always fast and reactive.
Example

import useSWR from 'swr';

const fetcher = (url) => fetch(url).then((res) => res.json());

export default function Profile() {
  const { data, error } = useSWR('/api/user', fetcher);
  if (error) return <div>Failed to load</div>;
  if (!data) return <div>Loading...</div>;
  return <div>Hello, {data.name}</div>;
}
Enter fullscreen mode Exit fullscreen mode

Conclusion
Next.js 14 offers a variety of powerful data fetching methods to suit different needs, whether you're building a static site, a dynamic web application, or a combination of both. By leveraging these methods, you can ensure your application is fast, responsive, and up-to-date.

Happy coding!

Top comments (0)