Incremental Static Regeneration (ISR) Simplified

Pro Members Only

This lesson is available if you have an active subscription.

Alternatively, some member might be able to gift it to you.

If you already have a subscription, you can sign in.

Professional NextJS Lessons

1.Course Intro
free
⏱️ 2:05
2.Get Setup
free
⏱️ 2:05
3.Project Template
free
⏱️ 5:45
4.Introducing FullStack React
free
⏱️ 4:57
5.App Router Reference
free
⏱️ 7:08
6.NextJS Server vs. "use client" Rendering
⏱️ 5:01
7.Nesting Server and Client Components
⏱️ 8:51
8.Client Only Components
⏱️ 3:48
9.Global CSS in NextJS
⏱️ 6:30
10.CSS Modules and SASS
⏱️ 4:15
11.Tailwind CSS
⏱️ 5:17
12.NextJS Custom Fonts
⏱️ 4:08
13.Static vs Dynamic Rendering
⏱️ 4:55
14.NextJS Link Component
⏱️ 3:20
15.NextJS Link Prefetching
⏱️ 5:49
16.Navigation Scroll with Link
⏱️ 2:02
17.Replace Navigation History
⏱️ 1:35
18.NextJS Image Component
⏱️ 7:01
19.Dynamic Image URLs
⏱️ 5:34
20.Safe Colocation with Private Folders
⏱️ 2:12
21.NextJS Route Groups
⏱️ 3:07
22.Dynamic Routes
⏱️ 5:37
23.NextJS API Routes
⏱️ 6:03
24.NextRequest and NextResponse
⏱️ 2:41
25.Cookies in API Handlers
⏱️ 4:25
26.React Suspense Simplified
⏱️ 2:23
27.Power of Suspense Boundaries
⏱️ 3:52
28.use Promises
⏱️ 3:24
29.Stream Promise Results from Server to Client
⏱️ 3:03
30.use Requires a Cached Promise
free
⏱️ 2:30
31.Suspense Error Boundaries
⏱️ 4:42
32.React Server Functions
⏱️ 4:50
33.Server Actions for Powerful Forms
⏱️ 5:35
34.useActionState to Simplify Form Actions
⏱️ 6:38
35.React Serializable Types
⏱️ 2:42
36.Create Dynamic Images with NextJS ImageResponse
⏱️ 5:54
37.Deploy NextJS Application to Production
⏱️ 3:51
38.NextJS Environment Variables Masterclass
⏱️ 3:50
39.Deploying and Managing Environment Variables
⏱️ 4:38
40.Using Databases for Dynamic Server Side State
free
⏱️ 7:34
41.Mastering NextJS Layout Files
⏱️ 4:54
42.Client State Management with NextJS
⏱️ 3:48
43.Client State Management In Action
⏱️ 8:04
44.Using Client State Management Libraries
⏱️ 5:25
45.Detecting Server vs Client Runtime and useEffect
⏱️ 4:33
46.Demystifying ISR vs SSR vs SSG
⏱️ 3:07
47.Static Site Generation or SSG with NextJS
⏱️ 3:16
48.Incremental Static Regeneration (ISR) Simplified
⏱️ 2:51
49.API Routes Caching with NextJS
⏱️ 3:05
50.Reference Guide to Caching for Modern NextJS
⏱️ 2:47
51.Setup a BASE_URL for client and server
free
⏱️ 2:54
52.Creating a sitemap.xml
⏱️ 3:29
53.Provide metadata with NextJS
⏱️ 6:54
🚨 Work In Progress 🚧
Subscribe for Launch

Incremental Static Regeneration (ISR) Simplified

Subscription Required

You must have an active subscription to access this content.
If you already have a subscription, you can sign in.

Core Concept

You can view ISR as nothing more than an Rendering + Caching. This means that all we are doing is setting up a timeout for the cache expiry through various settings.

For example we can setup a revalidate timeout for a fetch call to move our page into ISR territory.

app/isr/page.tsx
app/ssr/page.tsx
app/ssg/page.tsx
export default async function Page() {
console.log("Rendering ISR page...");

const content = await fetch(process.env.NEXT_PUBLIC_API_URL + "/content", {
next: {
revalidate: 10,
},
});

const { message } = await content.json();
return <div>{message}</div>;
}

Setup Route Level revalidate

Instead of controlling the timeout for dependencies, another way to control the incremental static regeneration is to explicitly export a variable called revalidate from our route file with the value set to the timeout duration for the whole route.

This is demonstrate below:

app/page.tsx
export const revalidate = 10;

export default async function Page() {
return (
<div>
<h1>Incremental Static Regeneration</h1>
<p>Last Rendered At Seconds: {new Date().getSeconds()}</p>
</div>
);
}
javascript
typescript
react
playwright

Enjoy free content straight from your inbox 💌

No spam, unsubscribe at any time.

Transcript

00:00

We've looked at how you can do SSR with next js, where the page is always be rendered, and SST where the page is only rendered during bill time. But what about ISR or incremental static regeneration to demonstrate how it ties into the ecosystem of the other things that we've looked at. Consider a simple page that loads some content from an external API and then renders it out to the screen. Now, even though we make an external call with fetch over here next, yes, we'll assume that that call will always return the same content and therefore only render this page out at will time. If you want this page to be dynamic and always get rendered on the server, then

00:33

what we can do is in that fetch call, provide an options object and set cash to no store. These are things that we already know, and the good news is that for ISR, instead of an all or nothing strategy for fetch caching, we can provide a custom next config object, which allows us to set a custom dynamic validation duration in seconds. Here we are saying that this fetch call should be made again if more than 10 seconds have passed since the last call, and we can even see this in the build output. So with these three pages created, let's run a next build. And here you can see that the SSR page is fully dynamic.

01:07

The SSG page is fully static, and the ISR page is initially static. However, it will be revalidated after every 10 seconds. To see this in action. Let's start a production buildup for application and look at the logs for when these components are rendered. For the SSG example, we see nothing on the console. That is because this page was only rendered during the build and will not be rendered again. However, for the SSR example, this will always be rendered. So whenever we visit this page or refresh it, we see a new log on the console. And finally for the ISR page, it'll only be rended if at least 10 seconds have passed

01:41

since the last rendering, which is what we set as the revalidate duration for our fetch call. So even though we keep refreshing the page, only after 10 seconds have passed does the page render again. Another way to control the incremental static regeneration is to explicitly export a variable called revalidate. From our route module. To demonstrate this, we have a simple page that has absolutely nothing dynamic about it. And even if we use an NPI like date, as far as next year is concerned, this is not considered a dynamic route. And this is something that we also looked in a lesson on static versus dynamic pages.

02:13

One option would be to mark this page as fully dynamic with force dynamic. But instead of that, let's opt into incremental static regeneration by exporting a revalidated variable and providing a revalidation duration in seconds. Here we are saying that this page should be revalidated if a request comes in after 10 seconds since the last time it was rendered. And just like before, we can also verify this in the build output. Hey, you can see that this page is initially static, however, it'll be revalidated after 10 seconds. And we can also verify this in the browser even though we are constantly refreshing the page.

02:45

It'll only render a new result after at least 10 seconds have passed.

Professional NextJS

Professional NextJS

1.Course Intro
free
⏱️ 2:05
2.Get Setup
free
⏱️ 2:05
3.Project Template
free
⏱️ 5:45
4.Introducing FullStack React
free
⏱️ 4:57
5.App Router Reference
free
⏱️ 7:08
6.NextJS Server vs. "use client" Rendering
⏱️ 5:01
7.Nesting Server and Client Components
⏱️ 8:51
8.Client Only Components
⏱️ 3:48
9.Global CSS in NextJS
⏱️ 6:30
10.CSS Modules and SASS
⏱️ 4:15
11.Tailwind CSS
⏱️ 5:17
12.NextJS Custom Fonts
⏱️ 4:08
13.Static vs Dynamic Rendering
⏱️ 4:55
14.NextJS Link Component
⏱️ 3:20
15.NextJS Link Prefetching
⏱️ 5:49
16.Navigation Scroll with Link
⏱️ 2:02
17.Replace Navigation History
⏱️ 1:35
18.NextJS Image Component
⏱️ 7:01
19.Dynamic Image URLs
⏱️ 5:34
20.Safe Colocation with Private Folders
⏱️ 2:12
21.NextJS Route Groups
⏱️ 3:07
22.Dynamic Routes
⏱️ 5:37
23.NextJS API Routes
⏱️ 6:03
24.NextRequest and NextResponse
⏱️ 2:41
25.Cookies in API Handlers
⏱️ 4:25
26.React Suspense Simplified
⏱️ 2:23
27.Power of Suspense Boundaries
⏱️ 3:52
28.use Promises
⏱️ 3:24
29.Stream Promise Results from Server to Client
⏱️ 3:03
30.use Requires a Cached Promise
free
⏱️ 2:30
31.Suspense Error Boundaries
⏱️ 4:42
32.React Server Functions
⏱️ 4:50
33.Server Actions for Powerful Forms
⏱️ 5:35
34.useActionState to Simplify Form Actions
⏱️ 6:38
35.React Serializable Types
⏱️ 2:42
36.Create Dynamic Images with NextJS ImageResponse
⏱️ 5:54
37.Deploy NextJS Application to Production
⏱️ 3:51
38.NextJS Environment Variables Masterclass
⏱️ 3:50
39.Deploying and Managing Environment Variables
⏱️ 4:38
40.Using Databases for Dynamic Server Side State
free
⏱️ 7:34
41.Mastering NextJS Layout Files
⏱️ 4:54
42.Client State Management with NextJS
⏱️ 3:48
43.Client State Management In Action
⏱️ 8:04
44.Using Client State Management Libraries
⏱️ 5:25
45.Detecting Server vs Client Runtime and useEffect
⏱️ 4:33
46.Demystifying ISR vs SSR vs SSG
⏱️ 3:07
47.Static Site Generation or SSG with NextJS
⏱️ 3:16
48.Incremental Static Regeneration (ISR) Simplified
⏱️ 2:51
49.API Routes Caching with NextJS
⏱️ 3:05
50.Reference Guide to Caching for Modern NextJS
⏱️ 2:47
51.Setup a BASE_URL for client and server
free
⏱️ 2:54
52.Creating a sitemap.xml
⏱️ 3:29
53.Provide metadata with NextJS
⏱️ 6:54
🚨 Work In Progress 🚧
Subscribe for Launch