Skip to content
Standard
Reader
Log in
Tag
Ssr
Articles and publications tagged Ssr across the Atmosphere.
15
articles
8
publications
Articles
Publications
Recent
Recent
Trending
Most popular
Sahil Kapoor's Playbook
·
May 15, 2026
Svelte
Svelte is a JavaScript UI framework that shifts most of the work from runtime to build time. Svelte components are compiled into small, surgical, imperative JavaScript that updates the DOM directly, rather than relying on a virtual DOM. The result is a smaller bundle and often faster updates than the runtime alternatives. Core ideas * Compiled, not interpreted. The framework largely disappears at runtime; only the parts the components use are shipped. * Reactive assignments. Plain variable
React
·
Vue
Sahil Kapoor's Playbook
·
May 13, 2026
Remix
Remix is a React framework focused on web-fundamentals: HTML forms, progressive enhancement, nested routing, and tight integration with the web platform. Remix moved into the React Router project in 2024, with React Router v7 effectively becoming the new Remix while retaining backwards compatibility for both names. Distinguishing ideas * Nested routes. The URL maps to a tree of layouts and leaf routes; each level can have its own data loader and error boundary. * Loaders and actions. Server
React
·
Next.js
Sahil Kapoor's Playbook
·
May 11, 2026
Nuxt
Nuxt is the production framework for Vue, analogous to Next.js for React. It provides file-based routing, server-side rendering, static site generation, layouts, auto-imports, a module ecosystem, and a Nitro-powered server for deployment to any JavaScript runtime. Key features * File-based routing. Files in pages/ become routes; dynamic params via [param].vue. * Universal rendering. SSR, SSG, ISR, client-only modes per route or component. * Auto-imports. Composables, components, and utilit
Vue
·
Next.js
Sahil Kapoor's Playbook
·
May 10, 2026
Next.js
Next.js is the most widely used React framework, maintained by Vercel. It adds file-based routing, server rendering, static generation, incremental static regeneration, image and font optimisation, edge runtime support, and a fully integrated build pipeline on top of React. Next.js is the default starting point for new React applications at most companies. Routing modes * App Router (current). File-based routing with React Server Components, layouts, parallel routes, intercepting routes, ser
React
·
SSR
Sahil Kapoor's Playbook
·
May 8, 2026
Client-Side Rendering (CSR)
Client-Side Rendering (CSR) is the pattern where the server returns a minimal HTML shell and bundle of JavaScript, and the browser fetches data and builds the entire UI client-side. Single-page applications (SPAs) built with React, Vue, or Angular without an SSR framework default to CSR. Strengths * Rich interactivity. The whole app runs in the browser; transitions and state changes are instant after the initial load. * Simpler deployment. Static files on a CDN; no Node or backend rendering
SSR
·
React
Sahil Kapoor's Playbook
·
May 7, 2026
Astro
Astro is a web framework built around the "islands architecture": pages are server-rendered HTML by default, with interactive components hydrated only where explicitly marked. Astro lets developers mix React, Vue, Svelte, Solid, and Preact components in the same project and ships zero JavaScript by default. Core ideas * Server-first rendering. Pages render to static HTML at build time or per request; minimal client JavaScript. * Islands. Components marked with client:load, client:idle, clie
React
·
Vue
nove-b blog
·
Oct 20, 2025
とりあえずデプロイしたらキャッシュに惑わされたのでNuxtのユニバーサルレンダリングについて調べてみた
Nuxt
·
SSR
fubits.dev
·
Sep 23, 2025
Svelte 5 Patterns (Part 3): Async + Remote
Demos with code snippets / REPLs included
4
·
Svelte 5
·
SvelteKit
ooo-yay.com
·
Jun 2, 2025
Migrating to SSR and source availability
My blog is actually two applications: a frontend and a backend. The frontend used to be a client side rendered (CSR) application, which worked fine for my usual work on internal tools.
programming
·
web
Afloat Boats
·
Jan 23, 2025
Component Coloring
NextJS 15 made sync APIs async to force component coloring for SSR boundaries. Here's why.
React
·
NextJS
fubits.dev
·
Dec 14, 2024
2024 in Review
To me, 2024 has been a bit different than previous years, mainly for two reasons. A lot has happened at a rather high pace and I learned a lot but with little rest and time for recaps. So I’m writing this kind of as a retrospective and as a log of my learnings and milestones. And to update my [portfolio](/).
SvelteKit
·
SSR
TkDodo's blog
·
Feb 21, 2024
Avoiding Hydration Mismatches with useSyncExternalStore
Avoiding hydration mismatches can usually be done in two ways - suppressing the warning or spawning an effect. But is there a third option ... ?
ReactJs
·
JavaScript
Lindsay Wardell
·
Nov 22, 2022
Integrating Mastodon with Astro
I didn't want to run a personal Mastodon instance, but I wanted to incorporate it into my personal domain. Let's explore what we can do to integrate with the Fediverse!
programming
·
astro
Angular-Buch
·
Feb 10, 2020
Angular 9 ist da!
Am 6. Februar 2020 wurde bei Google in Kalifornien der rote Knopf gedrückt: Das lang erwartete neue Release ist da – die neue Major-Version Angular 9.0! Wir werden Ihnen in diesem Artikel die wichtigsten Neuerungen vorstellen.
Angular
·
Angular 9
Angular.Schule
·
Jun 16, 2018
Unsere Vorträge zur DWX und enterJS 2018
Im Juni 2018 halten wir eine Reihe von Talks auf mehreren Konferenzen. Dies ist eine Liste aller Vorträge und des Workshops.
Angular
·
TypeScript
You've reached the end.
Home
Latest
Discover
Search