Zach’s ugly mug (his face) Zach Leatherman

The many definitions of Server-Side Rendering

June 10, 2022 On Twitter (archived)

Frameworks.

What is a framework, even?

“Solid start to this blog post, Zach—you’re doing great.”

What is a JavaScript Framework, even?

“Confuse them, then rescue them. This is how thought leadership works.”

You’ve almost certainly heard of JavaScript Component Frameworks (Libraries 🌶) like Vue.js, Preact, Svelte, Lit, SolidJS, and others.

This is not to be confused with JavaScript Application Frameworks like NuxtJS, Next.js, Gatsby, Remix, Astro, SvelteKit and others.

Well, huh—where does Vite live?

Application frameworks typically make use of one (or more! hi Astro) component frameworks.

Now folks that spend their time in the wonderful world of frameworks have likely encountered the term “Server-Side Rendering” (often abbreviated as SSR). What they might not be familiar with is that SSR is defined differently in Component and Application framework contexts.

Component Framework SSR

A package for server-side rendering Lit templates and components.
@lit-labs/ssr

When generating SSR code, this adds markers to <head> elements so that hydration knows which to replace.

If "ssr", Svelte emits an object with a render method suitable for server-side rendering.
Svelte docs

However, it is also possible to render the same components into HTML strings on the server, send them directly to the browser, and finally "hydrate" the static markup into a fully interactive app on the client.
Vue Server-Side Rendering (SSR) Guide

Server-Side Rendering (often abbreviated as "SSR") allows you to render your application to an HTML string that can be sent to the client to improve load time.
Preact Server-Side Rendering docs

Component frameworks define SSR as the static rendering of a component. Give it a component, get the rendered HTML back.

Application Framework SSR

Server-side rendering (SSR), is the ability of an application to contribute by displaying the web-page on the server instead of rendering it in the browser. Server-side sends a fully rendered page to the client; the client's JavaScript bundle takes over which then allows the Vue.js app to hydrate.—NuxtJS Server side rendering

Okay, fine—good so far. Seems in line with the component framework definition.

Node.js server required
A JavaScript environment is required to render your web page.
A Node.js server needs to be configured to execute your Vue.js application
NuxtJS Server side rendering

Now wait just one second. Why can’t I use a build server to server-side render the markup? The component framework definition made no mention of a Node.js (per-request) server! (Not to mention that servers often cost more than static builds.)

Also referred to as "SSR" or "Dynamic Rendering".
If a page uses Server-side Rendering, the page HTML is generated on each request.
Next.js Server-side Rendering docs

Another definition that requires a runtime server to generate HTML (on each request!).

Server-side Rendering (SSR) is one of Gatsby’s rendering options and allows you to pre-render a page with data that is fetched when a user visits the page. While it is recommended to use Static Site Generation (SSG) or Deferred Static Generation (DSG) over SSR you might have use cases that require it…
Gatsby’s Using Server-side Rendering (SSR) docs

Another server-based definition from Gatsby.

When you enable SSR you can: Implement sessions for login state in your app. Render data from an API called dynamically with fetch. Deploy your site to a host using an adapter.
Astro’s Server-side Rendering docs

Not explicitly stated in the Astro docs, but these are definitely runtime server features.

The gist

Application frameworks most often define SSR as the alternative to SSG (static site generation). A runtime server is used to render the components on request.

Component frameworks define SSR as generating static HTML from a component definition. They offer no preference as to whether this should or can happen at build time or at request-time.

One term, two contexts, two definitions! I do think it’s important that folks understand the distinction here—and to keep it in mind when you navigate these different contexts. My hunch is that the application framework definition will likely win out. I’ve already started referring to the component framework definition as Component SSR 😅.

SSR isn’t “free”. These SSR frameworks exist because they make a profit for their creators.
Cory House

The worst outcome from this overloaded definition (in my mind) would be that folks mistakenly assume that component framework SSR requires a Node.js server! It does not. I’d hate to see ambiguity in a technical term leveraged for profit. Just know that you can use a static build to implement component SSR (maybe also known as prerendered markup) without a Node.js server, a serverless function adapter, or any of those unnecessary (and more costly) alternatives.


This post inspired by tweets from:


< Newer
Use esm-import-transformer for “isomorphic-ish” ECMAScript Modules
Older >
PodRocket podcast: Eleventy with Zach Leatherman

Zach Leatherman IndieWeb Avatar for https://zachleat.com/is a builder for the web at IndieWeb Avatar for https://cloudcannon.com/CloudCannon. He is the creator and maintainer of IndieWeb Avatar for https://www.11ty.devEleventy (11ty), an award-winning open source site generator. At one point he became entirely too fixated on web fonts. He has given 79 talks in nine different countries at events like Beyond Tellerrand, Smashing Conference, Jamstack Conf, CSSConf, and The White House. Formerly part of Netlify, Filament Group, NEJS CONF, and NebraskaJS. Learn more about Zach »

22 Reposts

HadleyHadleyFeedpushr feeds.IndieWeb Avatar for https://weboasis.digitalFrontend DogmaDavid EastNicolas HoizeyJason GormanSami KeijonenJabran RafiqueIlja | ИльяAbdón RodríguezMWDelaneyAndy CrouchJavaScript DailyAbhay TalrejaRunJS ❤️ JavaScriptIndieWeb Avatar for https://whitep4nth3r.comIndieWeb Avatar for https://dandp.ltdIndieWeb Avatar for https://blog.cwa.me.ukBryan D. WilhiteJason Garber

39 Likes

Jesse HeadyJohn MeyerhoferFabio Bedini whisherHugo NogueiraHawk TicehurstRezaAbdón RodríguezIlja | ИльяMarc Littlemore 👋🏻Stefan MateiPhilipGrayson HicksBruce AndersonJabran RafiqueOwen Buckley ♻️Andreas Eracleouspredaytor 🇺🇦Praveen Pal ⚡Meet DaveJake DohmMatt BiilmannJason GormanPrince WilsonMayankJared WhiteMatthias OttSteven WhittonPaul MasonKyle StonemanMurtuzaali SurtiTimHeather BuchelRick KleinDavid EastLynn FisherMalte UblRizaldithis isFran Agulto🧗🏽‍♂️🤓 ⚛️
6 Comments
  1. ⚡️ Salma | whitep4nth3r

    @whitep4nth3r

    SaD To SEe OrMG not inclUdeD.

  2. Zach Leatherman

    @zachleat

    I incorrectly assumed that introducing another initialism to an already confusingly overloaded landscape of initialisms would *not* fix the problem I apologize 😅

  3. ⚡️ Salma | whitep4nth3r

    @whitep4nth3r

    Eagerly awaiting a post titled "Dear Salma".

  4. Mayank

    @m_yxnk

    "component SSR" and "application SSR" terms make a lot of sense! and they're not a mouthful 😅

  5. Zach Leatherman

    @zachleat

    …what have I started

  6. Zach Leatherman

    @zachleat

    Team Just-Say-The-Words 😅

Shamelessly plug your related post

These are webmentions via the IndieWeb and webmention.io.

Sharing on social media?

This is what will show up when you share this post on Social Media:

How did you do this? I automated my Open Graph images. (Peer behind the curtain at the test page)