Chisom Kanu
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Incremental Static Regeneration (ISR) in Nextjs ## Introduction [Nextjs](https://nextjs.org/) is a [React](https://react.dev/) framework with a feature called Incremental Static Regeneration ([ISR](https://nextjs.org/docs/pages/building-your-application/data-fetching/incremental-static-regeneration)). In today's digital landscape, users expect websites to load quickly and provide up-to-date information. Incremental Static Regeneration changes how websites are generated by enabling up-to-date content while benefiting from static pages' speed and efficiency. It allows developers to create and serve pre-rendered pages on demand, balancing real-time updates and optimized performance. Traditionally, static site generation ([SSG](https://nextjs.org/docs/pages/building-your-application/rendering/static-site-generation)) involves generating all pages during the build process. While this approach ensures consistent and performant page loads, it falls short when displaying real-time or frequently updated content. On the other hand, server-side rendering ([SSR](https://www.educative.io/answers/what-is-server-side-rendering)) generates each page on every request, resulting in slower response times and increased server load. Incremental Static Regeneration bridges this gap by introducing a layer on the statically generated pages. It allows you to define a revalidation period for each page, indicating how frequently the page should be regenerated in the background. The previously generated static page is served during this period, providing instant loading times. Once the revalidation period expires, Nextjs automatically renews the page, ensuring it has the latest data. This article will cover the benefits, problems, and use cases for Incremental Static Regeneration, how ISR differs from static site regeneration, and how ISR works in Nextjs. Prerequisites: Familiarity with [JavaScript](https://www.javascript.com/) and a basic understanding of Nextjs and its features. ## Benefits of Incremental Static Regeneration There are several benefits to using ISR in Nextjs: * Real-Time Updates: One advantage of Incremental Static Regeneration is its ability to update pages dynamically. By defining a revalidation period for each, Nextjs automatically regenerates and updates the stale pages in the background. It ensures users always have access to the most recent data. You can set the revalidation interval based on the frequency of content updates, striking a balance between real-time updates and server load. * Personalized Content: With Incremental Static Regeneration, you can generate personalized static pages based on user-specific data. You can fetch and render content tailored to users, using request parameters or cookies. * SEO-Friendly: ISR helps improve search engine optimization ([SEO](https://searchengineland.com/guide/what-is-seo)) by generating pre-rendered static [HTML](https://blog.openreplay.com/semantic-elements-in-html--why-to-use-them/) files. These files are easily accessable by search engine bots, resulting in better indexing and improved visibility in search engine results ensuring that important pages are pre-rendered and up-to-date, ISR contributes to better SEO practices. * Developer Experience: Nextjs makes it easy to implement ISR with built-in support. Developers can utilize Nextjs intuitive [APIs](https://nextjs.org/docs/pages/building-your-application/routing/api-routes) and configuration options to define revalidation intervals and handle content updates. It streamlines the development process and allows developers to focus on building performant web applications. * Cost: By leveraging ISR, you can reduce the resources required during the build process. The cost efficiency makes ISR an attractive choice for projects with budget constraints or limited resources. ## Problems Associated with Incremental Static Regeneration There are a few challenges that ISR developers should be aware of. Here are some problems that can arise when using ISR: * Cache Invalidation: [Caching](https://www.techtarget.com/whatis/definition/caching) can be a concern when using ISR. If the caching mechanism is not managed correctly or invalidated when content updates occur, users may continue to see stale content even after regeneration. Developers must carefully consider caching strategies and ensure that cache invalidation mechanism are in place to deliver new or fresh content to users. * Compatibility with External Data Sources: ISR relies on data from external sources, such as APIs or databases, to provide content updates. Ensuring compatibility and synchronization between the data sources and the regeneration process can be a challenge, especially when dealing with distributed systems or third-party APIs. * Increased Complexity: Implementing ISR requires additional configuration and consideration. Developers need to handle edge cases where content updates may occur during page regeneration. This increased complexity can make debugging and development difficult. * Server Load: Background regeneration processes can add additional server load. If many pages require frequent regeneration, it can impact server resources and result in slower regeneration with ISR Some tips to help you counteract the problems associated with Incremental Static Regeneration include: 1. Only use ISR for pages that need to be updated frequently. 2. Ensure that your revalidation logic is efficient and that it only revalidates pages that have changed. 3. Keep an eye on your server load to make sure that ISR is not causing too much of a problem. 4. Test your pages to ensure they are still performing well after enabling ISR. ## How Incremental Static Regeneration differs from Static Site Generation Incremental Static Regeneration(ISR) and Static Site generation (SSG) are two approaches to generating static HTML files in Nextjs, but they differ in how and when the pages are generated. In [Static Site](https://www.sanity.io/static-websites), all the static pages are generated during the initial build process. The pages are pre-rendered based on the defined templates and data sources, resulting in a complete set of static HTML files. On the other hand, ISR generates pages as they are requested. Initial static pages are still generated during the build process, but ISR allows updates and regeneration of specific pages without rebuilding the entire site. ISR offers better scalability for websites with frequent content updates or large amounts of content. Since only specific pages are regenerated when necessary, the server load is reduced compared to rebuilding the entire site in SSG. It makes ISR suitable for websites that experience unpredictable traffic spikes or have high volumes of updates. Below is a tabular comparison of the differences between Incremental Static Regeneration(ISR) and Static Site Generation(SSG): | | Incremental Static Regeneration(ISR) | Static Site Generation(SSG) | | --- | --------------------------------------------------- | ---------------------------------------------------------- | | 1 | Pages are generated as they are requested | All pages are generated during the building process | | 2 | Allows for on-demand regeneration of specific pages | Requires a full rebuild to reflect any content changes | | 3 | Balances static generation with dynamic content | Focuses on pre-rendering static pages without dynamic updates | | 4 | Allows for real-time or near real-time updates through revalidation intervals | Does not offer real-time updates unless rebuilt | | 5 | Reduces build time as only specific pages need regeneration | Longer build time due to generating all pages upfront | | 6 | Provides a balance between performance and contents | Offers excellent performance for static pages | | 7 | Scalable for websites with frequent content updates | Ideal for websites with static content and less frequent updates | ## How Incremental Static Regeneration Works in Nextjs To implement Incremental Static Regeneration in Next.js, you need to follow a few steps: * Specify the `revalidate` property: In your page component, you can define the `revalidate` property to set the revalidation interval for that page. For example, `revalidate: 60` would set a revalidation interval of 60 seconds. * Generate static pages: Use Next.js's static site generation capabilities to pre-render your pages during the build process. It can be done using functions like `getStaticProps` and `getStaticPaths`. * Enable ISR: To enable Incremental Static Regeneration for a page, you need to set the `fallback` property to either `true` or `blocking` in the `getStaticPaths` function. It tells Next.js to generate the page at runtime if it hasn't been pre-rendered yet or if the revalidation interval has elapsed. * Handle fallback rendering: When the page is requested and needs to be generated at runtime, Next.js provides fallback rendering. You can use this opportunity to display a loading state until the page is fully generated. Let's look at an example of how to use Incremental Static Regeneration (ISR) in Next.js to update a blog page whenever a new blog post is added. ### Getting Started with your project First, make sure you have [Nodejs](https://nodejs.org/en) and npm installed on your machine. Then, create a new Nextjs project by running the following commands in your terminal: ``` npx create-next-app my-blog cd my-blog ``` Create a directory called `data` in the root of your project. Inside the data directory, create a file called `blogPosts.json`. This file will serve as your blog post data source. ```json [ { "id": "1", "title": "First Blog Post", "content": "This is my content for the first blog post." }, { "id": "2", "title": "Second Blog Post", "content": "This is my content for the second blog post." } ] ``` Next you create a new file called `pages/blog/[id].js` inside the pages directory. This file will handle the routing for individual blog posts. ```jsx import { useRouter } from "next/router"; import { useEffect, useState } from "react"; const BlogPost = () => { const router = useRouter(); const { id } = router.query; const [post, setPost] = useState(null); useEffect(() => { const fetchPost = async () => { const response = await fetch(`/api/blogPosts/${id}`); const data = await response.json(); setPost(data); }; fetchPost(); }, [id]); if (!post) { return <div>Loading...</div>; } return ( <div> <h1>{post.title}</h1> <p>{post.content}</p> </div> ); }; export default BlogPost; ``` In the code above, Nextjs's routing by creating a file with square brackets `[id].js` was used. It allows you to handle routes like `/blog/1`, `/blog/2`, etc. The `useRouter` hook is used to access the `id` parameter from the route. We also fetch the individual blog post data using the useEffect hook. Inside the `fetchPost` function, make an API call to retrieve the specific blog post based on its ID. Then you create a new file called `pages/api/blogPosts/[id].js`. This file will serve as the API route to fetch individual blog posts. ```jsx import blogPosts from '../../../data/blogPosts.json'; export default (req, res) => { const { id } = req.query; const post = blogPosts.find((post) => post.id === id); if (!post) { res.status(404).json({ error: 'Blog post not found' }); } else { res.status(200).json(post); } }; ``` Here, the `blogPosts` data from the `blogPosts.json` file was imported. You extract the `id` parameter from the request query inside the API route. Then you find the matching blog post based on the ID and send it back as a response. Next, create a new file called `pages/blog/index.js`. This file will serve as the blog index page that lists all the blog posts. We'll use Incremental Static Regeneration to update this page when new blog posts are added. ```jsx import Link from "next/link"; import { useEffect, useState } from "react"; const BlogIndex = () => { const [posts, setPosts] = useState([]); useEffect(() => { const fetchPosts = async () => { const response = await fetch("/api/blogPosts"); const data = await response.json(); setPosts(data); }; fetchPosts(); }, []); return ( <div> <h1>Blog Posts</h1> <ul> {posts.map((post) => ( <li key={post.id}> <Link href={`/blog/${post.id}`}> <a>{post.title}</a> </Link> </li> ))} </ul> </div> ); }; ``` In the code above, we fetch all the blog posts using the `useEffect` hook. Inside the `fetchPosts` function, we make an API call to retrieve all the blog posts from the API route `/api/blogPosts`. We set the retrieved data in the `posts` state. We then render a list of blog posts with links to their individual pages using the `map` function. Each blog post item is wrapped in a `Link` component from Nextjs, which provides client-side navigation without a full page reload. You need to modify the `getStaticProps` function in the `pages/blog/index.js` file to enable Incremental Static Regeneration for the blog index page. This function will generate the initial static version of the page and update it incrementally when new blog posts are added. Replace the existing `BlogIndex` component code with the following: ```jsx import Link from 'next/link'; const BlogIndex = ({ posts }) => { return ( <div> <h1>Blog Posts</h1> <ul> {posts.map((post) => ( <li key={post.id}> <Link href={`/blog/${post.id}`}> <a>{post.title}</a> </Link> </li> ))} </ul> </div> ); }; export async function getStaticProps() { const response = await fetch('/api/blogPosts'); const data = await response.json(); return { props: { posts: data, }, revalidate: 20, // Regenerate the page every 20 seconds }; } export default BlogIndex; ``` In the code above, we've replaced the `useEffect` hook with the `getStaticProps` function. This function is a Nextjs function that runs at build time and fetches the initial data for the page. Inside the `getStaticProps` function, we make an API call to retrieve all the blog posts and set them as the `posts` prop. We then return this prop as part of the `props` object. The `revalidate` option is set to 20, which means Nextjs will regenerate the page every 20 seconds. This allows the page to be incrementally updated with new blog posts without rebuilding the entire site. To see the code in action, run the Nextjs development server using the following command: ``` npm run dev ``` This command will start the development server, and you should see an output indicating that the server is running. Open your web browser and visit `http://localhost:3000/blog`. You should see the "Blog Posts" heading and a list of blog post titles. To simulate adding a new blog post, let's update the blogPosts.json file. Add a new blog post object to the array: ```json [ { "id": "1", "title": "First Blog Post", "content": "This is my content for the first blog post." }, { "id": "2", "title": "Second Blog Post", "content": "This is my content for the second blog post." }, { "id": "3", "title": "New Blog Post", "content": "This is my content for the new blog post." } ] ``` Don't forget to save the files for changes to reflect. After saving the `blogPosts.json` file, wait for the page to refresh automatically. Nextjs will trigger Incremental Static Regeneration and update the blog index page with the new blog post without rebuilding the entire site. Once the page refreshes, go back to `http://localhost:3000/blog`. You should see the "New Blog Post" added to the list of blog posts without the need for a full rebuild. Clicking on the new blog post should take you to its page. That's it! You've successfully implemented Incremental Static Regeneration in Nextjs to update the blog page without rebuilding the entire site when adding a new blog post. ## Use Cases for Incremental Static Regeneration in Nextjs Knowing when to use ISR depends on the specific requirement of your application. Here are some scenarios where developers can use ISR: 1. ISR can be a good choice if your website requires frequent updates to display the latest content. News websites, blogs, or e-commerce platforms that need to show real-time information or product availability can use ISR. 3. Applications such as stock market tickers, live chat, or social media feeds can benefit from ISR. By configuring appropriate revalidation intervals, you can ensure the data is updated regularly, providing users with the most recent information. For example, a weather forecasting website can utilize ISR to fetch real-time weather data and update the regular pages regularly. 5. If you want to conduct A/B testing on static pages, ISR can facilitate the process. By generating different page versions and leveraging ISR, you can serve alternative content to other users, measure their responses, and make data-driven decisions to improve user experiences. 7. Developers can use ISR in cases where data fetching or processing is resource-intensive, and ISR can help optimize performance. Instead of recalculating or fetching data for every request, you can generate pre-rendered pages using ISR. It will help reduce the load on the backend system. ## Conclusion Incremental Static Regeneration in Nextjs offers numerous benefits, and it also has its challenges. If you’re looking for a way to create static pages that can be updated without redeploying your entire site, then ISR is an excellent option. Happy Coding!

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully