最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Static Site Generation (SSG) vs. Server-Side Rendering vs. Client-Side Rendering - Stack Overflow

programmeradmin2浏览0评论

I am baffled by the lack of concrete information about how Client-Side Rendering (CSR), Server-Side Rendering (SSR), and Static Site Generation (SSG) actually work.

There are tons of articles loosely explaining the concepts, but I have not found a single source that goes in-depth and explains exactly what HTML, CSS and JS are created on the server vs on the client, in the three concepts.

From the Next.js docs, we can read that:

Static Rendering

  • With Static Rendering, both Server and Client Components can be prerendered on the server at build time.
  • Client Components have their HTML and JSON prerendered and cached on the server. The cached result is then sent to the client for hydration.
  • Server Components are rendered on the server by React, and their payload is used to generate HTML. The same rendered payload is also used to hydrate the ponents on the client, resulting in no JavaScript needed on the client.

Note: Static Rendering is equivalent to Static Site Generation (SSG) and Incremental Static Regeneration (ISR).

And:

Dynamic Rendering

  • With Dynamic Rendering, both Server and Client Components are rendered on the server at request time.

Note: This is equivalent to Server-Side Rendering(getServerSideProps()).

Fine, so Static Rendering equals Static Site Generation (SSG), meaning that some html+css is created build-time. Exactly what html is created build-time depends on whether you use Client Components or Server Components.

I inspected the built public folder of a built Gatsby project and noticed that none of the React ponents were actually turned into html (regardless of whether they depended on user interaction). Gatsby had created an html file for each page, but the <body> of each of those was still React ponents defined in JS, expecting to be turned into html by React on the client, run-time. This breaks with my understanding of the second bullet from the Next.js docs, which states that the html is "prerendered".


Questions

  1. By the above docs, could we say that Static Site Generation (SSG) actually requires both Server-Side Rendering (SSR) and Client-Side Rendering (CSR)?

  2. If so, does that not conflict with the Dynamic Rendering definition above, which states that Dynamic Rendering is equivalent to Server-Side Rendering?

  3. Finally, exactly what html+css+js is created upon Static Rendering with Client Components?

I am baffled by the lack of concrete information about how Client-Side Rendering (CSR), Server-Side Rendering (SSR), and Static Site Generation (SSG) actually work.

There are tons of articles loosely explaining the concepts, but I have not found a single source that goes in-depth and explains exactly what HTML, CSS and JS are created on the server vs on the client, in the three concepts.

From the Next.js docs, we can read that:

Static Rendering

  • With Static Rendering, both Server and Client Components can be prerendered on the server at build time.
  • Client Components have their HTML and JSON prerendered and cached on the server. The cached result is then sent to the client for hydration.
  • Server Components are rendered on the server by React, and their payload is used to generate HTML. The same rendered payload is also used to hydrate the ponents on the client, resulting in no JavaScript needed on the client.

Note: Static Rendering is equivalent to Static Site Generation (SSG) and Incremental Static Regeneration (ISR).

And:

Dynamic Rendering

  • With Dynamic Rendering, both Server and Client Components are rendered on the server at request time.

Note: This is equivalent to Server-Side Rendering(getServerSideProps()).

Fine, so Static Rendering equals Static Site Generation (SSG), meaning that some html+css is created build-time. Exactly what html is created build-time depends on whether you use Client Components or Server Components.

I inspected the built public folder of a built Gatsby project and noticed that none of the React ponents were actually turned into html (regardless of whether they depended on user interaction). Gatsby had created an html file for each page, but the <body> of each of those was still React ponents defined in JS, expecting to be turned into html by React on the client, run-time. This breaks with my understanding of the second bullet from the Next.js docs, which states that the html is "prerendered".


Questions

  1. By the above docs, could we say that Static Site Generation (SSG) actually requires both Server-Side Rendering (SSR) and Client-Side Rendering (CSR)?

  2. If so, does that not conflict with the Dynamic Rendering definition above, which states that Dynamic Rendering is equivalent to Server-Side Rendering?

  3. Finally, exactly what html+css+js is created upon Static Rendering with Client Components?

Share Improve this question edited Feb 15, 2023 at 8:27 Magnus asked Feb 15, 2023 at 8:21 MagnusMagnus 7,86114 gold badges65 silver badges102 bronze badges 1
  • I think what might be confusing is the hydration one, the idea here is to get the html/css as fast as can on page load, but this doesn't stop the page being a client side Reaxt page, it's just the JS is loaded later, – Keith Commented Feb 15, 2023 at 8:37
Add a ment  | 

1 Answer 1

Reset to default 6

Bouncing back and forth between frameworks makes this a bit harder to answer concretely, so I'll focus mostly on Next.js here.

There are really only two places React ponents are converted into HTML representations[^1]: the server, and the client/browser. Excepting Next.js Server Components, all React ponents are always rendered in the browser. Thus, your questions are mostly about server-side rendering.

The difference between SSG and SSR is when the rendering happens and the information available to the ponents at that time, not the HTML output. Any SSG-patible page would produce the same result via SSR, albeit less efficiently.

Next.js is using the terms “Static” and “Dynamic” to refer to SSG and SSR, respectively. They also include ISR (incremental static generation) in SSG because it works similarly, just delayed.

With that understanding, let's look at your questions:

By the above docs, could we say that Static Site Generation (SSG) actually requires both Server-Side Rendering (SSR) and Client-Side Rendering (CSR)?

No. SSR implies that the rendering is happening in response to a request. SSG happens in advance (and in an isolated context from requests, typically). Thus they are mutually exclusive, though both can happen in the same application.

If so, does that not conflict with the Dynamic Rendering definition above, which states that Dynamic Rendering is equivalent to Server-Side Rendering?

Next.js is using the term “Dynamic” to refer to SSR—where pages are generated in response to and with access to the request—for clarity.

Finally, exactly what html+css+js is created upon Static Rendering with Client Components?

For vanilla React, all ponents render on the client. Next.js has a newer, somewhat experimental implementation for ponents that are only rendered on the server, resulting in no JS payload for them to be run on the client. This is effectively SSR/SSG but where some ponents are never hydrated.

In vanilla React, when rendering a ponent on the server, the HTML/CSS for the page is sent to the client, along with the JS needed to hydrate (load React client-side and attach to that HTML).

If you are using Next.js Server Components, the same HTML/CSS is generated, but less of your ponent JS will be bundled and sent to the client.


Regarding your Gatsby example, when using SSG, Gatsby builds static HTML pages for each of the pages it knows about, and includes the JS needed to hydrate the page into a single-page app with Gatsby’s client-side routing configured. I strongly suspect you have either checked the public folder during development with SSR disabled, or in an earlier version of Gatsby that didn't support SSR in development. If I'm mistaken, you might need to review how you have Gatsby configured because that is not typical.


^1: I'm speaking loosely here. Components are rendered and React determines from their output what manipulations (if any) to make to the DOM. Not all ponents even produce elements to render. Yadda, yadda.

发布评论

评论列表(0)

  1. 暂无评论