Demystifying ISR vs SSR vs SSG

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
54.Created High Quality Social Media Previews
⏱️ 7:38

Demystifying ISR vs SSR vs SSG

Subscription Required

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

Build Time vs Request Time

When it comes to rendering content in modern web applications, there are a few terms that developers use like SSR, SSG and ISR. Before we dissect these terms its useful to understand the difference between build time and request time.

Put Simply:

  • Build Time is when we are building our application.
  • Request Time is when are responding to an incoming request.

SSR

SSR stands for Server Side Rendering. With SSR our content is rendered on the server at request time.

This means that when a user requests a page and the server is processing the request, it renders our components to get the generated HTML, and sends it back to the client.

Pro:

  • This approach is particularly useful for dynamic content that needs to be up-to-date.

Con:

  • It consumes server resources as we need to render the components to get the content.

SSG

SSG stands for Static Site Generation. The objective of SSG is to pre-render our site into static html at build time.

With SSG we render our components during the build process. When we deploy our site, we can host the generated files on our server or even on an external CDN - (content delivery network) which is closer to the user for even faster response times.

Pro:

  • Improved response times and decreased usage of server resources.

Con:

  • content we want to display is predetermined at build time which means that we cannot use it with dynamic data

ISR

ISR stands for Incremental Static Regeneration. It's a hybrid approach that combines the benefits of both SSR and SSG.

With ISR, content is initially generated statically like SSG but after that it can be regenerated in the background like SSR. This allows you to update the content from time to time without the need to rebuild the entire site.

Pro:

  • We get the fast response time like SSR and dynamic content support like SSR.

Con:

  • We get the consumption of server resources like SSR and possibility of outdated content like SSG.

With NextJS

The good news, is that nextjs is a hybrid framework that allows you to move the slider from full static build time rendering to full dynamic request time rendering and anywhere in between by using its various apis and configuration options.

javascript
typescript
react
playwright

Enjoy free content straight from your inbox 💌

No spam, unsubscribe at any time.

Transcript

00:00

When it comes to rendering content in modern web applications, there are a few terms that developers use, like S-S-R-S-S-D, and ISR. Let's simplify them. Before we dissect these terms, it's important to understand the difference between built time and request time. We know that before our code can be deployed to a server, we need to run next build. This can be done locally or by our continuous delivery pipeline, and we saw an example of the CEL Built pipeline in our lesson on next year's deployment. Things that occur during the act of building our application with next build is

00:31

what we are calling build time activities. After we deploy our application to a hosting provider, are built code executing on a server can start servicing requests to return appropriate responses. Things that occur during the act of responding to a request is what we call request time activities. Put simply Build time is when we are building our application and request time is when we are responding to an incoming request. With these concepts out of the way, let's take a look at the different rendering strategies. SSR stands for server side rendering. With SSR, our content is rendered on the

01:04

server at request time. This means that when a user requests a page and the server is processing the request, it renders our components to get the generated HTMO and sends it back to the client. This approach is particularly useful for dynamic content that needs to be up to date. So when a new request comes in, new content is generated and sent back. SSG stands for Static Site Generation. The objective of SSG is to pre gender our site into static HTML files. At build time. With SSG, we render out components during the build process. When we deploy our site,

01:35

we can host the generated files on our server or even an external CDN or content delivery network, which is closer to the user for even faster response times. So when a request comes in, we don't need to execute our code to get the rendered response and instead simply return the pre-printed content. SSG has a number of benefits. The biggest ones are improved response times and decreased usage of server resources while improved performance is great. This does have the drawback that the content we want to display is predetermined at build time, which means that we cannot use it with dynamic data.

02:07

ISR stands for incremental static regeneration. It is a hybrid approach that combines the benefits of both SSR and SSG. With ISR content is initially generated statically like SSG, but after that it can be regenerated in the background. Like SSR, this allows you to update the content from time to time without the need to rebuild the entire site. For example, initially we generate the static pages at build time like SSG and deploy them to our site. But after a predetermined condition, like a duration or a triggered event, we update the generated files so that they contain fresh content.

02:41

You can think of ISR as SSR plus caching. With ISR, we get the fast response times of static site generation and dynamic content support of server site rendering. The good news is that next year is a hybrid framework that allows you to move the slider from full static build time rendering to full dynamic request time rendering, and anywhere in between by using its various APIs and configuration options. Thank you for joining me, and I'll see you in the next one.

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
54.Created High Quality Social Media Previews
⏱️ 7:38