惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
D
Docker
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
博客园 - 【当耐特】
N
Netflix TechBlog - Medium
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
Recent Announcements
Recent Announcements
GbyAI
GbyAI
T
Tailwind CSS Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
L
LangChain Blog
A
About on SuperTechFans
M
MIT News - Artificial intelligence
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
ReactJs Performance ~ Server-Side Rendering (SSR) and Sta...
Ogasawara Ka · 2026-05-11 · via DEV Community
Cover image for ReactJs Performance ~ Server-Side Rendering (SSR) and Static Generation ~

Ogasawara Kakeru

SSR and Static Site Generation (SSG) shift page rendering from the client to the server, allowing users to receive pre-rendered HTML immediately. This approach significantly enhances loading speed, user experience, and search engine visibility.

Rendering Strategy Comparison

Client-Side Rendering (CSR)

  • The browser first downloads JavaScript files
  • JavaScript runs and generates the UI in the browser
  • Users see content only after rendering completes
  • Estimated load time: around 2–4 seconds

Server-Side Rendering (SSR)

  • The server generates complete HTML before sending it
  • The browser can display content right away
  • JavaScript then adds interactive functionality through hydration
  • Estimated load time: around 0.5–1.5 seconds

Static Site Generation (SSG)

  • Pages are generated as static HTML during the build process
  • Content is delivered instantly through a CDN
  • JavaScript hydrates the page to enable interactions
  • Estimated load time: around 0.2–0.8 seconds

Next.js SSR Implementation

// pages/products/[id].js

// This function runs on the server each time the page is requested
export async function getServerSideProps({ params }) {
  const product = await fetchProduct(params.id);

  return {
    props: {
      product,
    },
  };
}

// The component receives product data before the page is rendered
export default function ProductPage({ product }) {
  return (
    <div>
      <h1>{product.name}</h1>
      <p>{product.description}</p>
      <button>Add to Cart</button>
    </div>
  );
}

Enter fullscreen mode Exit fullscreen mode

Next.js SSG Implementation

// pages/blog/[slug].js

// This function executes during the build process
export async function getStaticPaths() {
  const posts = await fetchAllPosts();

  return {
    paths: posts.map((post) => ({
      params: { slug: post.slug },
    })),
    fallback: "blocking", // Generate pages dynamically when needed
  };
}

// Fetch data and generate static pages ahead of time
export async function getStaticProps({ params }) {
  const post = await fetchPost(params.slug);

  return {
    props: {
      post,
    },
    revalidate: 3600, // Refresh the page every hour
  };
}

// The page is served as pre-rendered HTML
export default function BlogPost({ post }) {
  return (
    <article>
      <h1>{post.title}</h1>
      <div dangerouslySetInnerHTML={{ __html: post.content }} />
    </article>
  );
}

**Rendering Strategy Performance**
| Rendering Strategy | Initial Server Response | First Visual Display | Fully Usable State | SEO Performance | Best Fit |
|---|---|---|---|---|---|
| CSR (Client-Side Rendering) | Around 100200ms | Usually 24 seconds | Around 2.55 seconds | Weak for search engines | Apps that require authentication or heavy client-side interaction |
| SSR (Server-Side Rendering) | Around 200500ms | Roughly 0.51.5 seconds | About 12.5 seconds | Very strong | Frequently updated pages and dynamic data |
| SSG (Static Site Generation) | Around 50100ms | Roughly 0.20.8 seconds | Around 0.51.5 seconds | Excellent | Fully static websites and landing pages |
| ISR (Incremental Static Regeneration) | Around 50150ms | Roughly 0.21 second | Around 0.51.8 seconds | Excellent | Pages that are mostly static but occasionally updated |
| Partial Hydration | Around 50150ms | Roughly 0.20.8 seconds | Around 0.31.2 seconds | Excellent | Applications combining static and interactive sections |

## Incremental Static Regeneration (ISR)

ISR combines the speed of static generation with the flexibility of dynamic updates. Pages are pre-rendered as static HTML, but they can be regenerated automatically after a specified interval.

Enter fullscreen mode Exit fullscreen mode


javascript
export async function getStaticProps() {
const data = await fetchData();

return {
props: {
data,
},
revalidate: 60, // Rebuild the page every 60 seconds
};
}




After the revalidation period expires, the first visitor triggers a background regeneration process. That user still receives the existing cached page while the updated version is being rebuilt. Once regeneration finishes, future visitors receive the newly updated page.

This approach provides the speed advantages of static pages while still keeping content regularly updated.

Popular frameworks that support SSR and SSG include Next.js, Remix, Gatsby, and Astro. Although each framework has its own rendering strategy and optimization techniques, all aim to improve initial page loading performance compared to traditional Client-Side Rendering (CSR).

For content-focused websites, SSG can reduce loading times by roughly 60–80% compared to CSR. In highly dynamic applications, SSR often improves perceived performance by around 40–60%. However, these benefits usually come with additional server complexity and potentially higher infrastructure costs.

**Implementation Roadmap**
Rolling out all 15 optimizations at once overwhelms teams. Here's a practical implementation sequence based on effort vs. impact:

**Phase 1 - Quick Wins (Week 1-2):**

-Enable React Compiler (automatic memoization)
-Implement route-based code splitting
-Add image optimization and lazy loading
-Configure bundle analyzer

**Phase 2 - Foundation (Week 3-4):**

-Optimize state management (switch to Zustand if using Context)
-Implement virtualization for large lists
-Set up performance monitoring
-Add database query optimization

**Phase 3 - Advanced (Week 5-8):**

-Implement tree shaking and bundle optimization
-Add PWA capabilities with service workers
-Optimize CSS and defer third-party scripts
-Implement memory leak prevention

**Phase 4 - Architecture (Week 9-12):**

-Move to SSR/SSG where appropriate
-Implement Web Workers for heavy computations
-Full performance audit and tuning

# Frontend Optimization Priorities

| Optimization | Effort | Impact | Priority | Prerequisites |
|---|---|---|---|---|
| React Compiler | Low | Very High | 1 | React 19+ |
| Code splitting | Low | Very High | 1 | None |
| Image optimization | Low | High | 1 | None |
| State management | Medium | Very High | 2 | Architecture review |
| Virtualization | Medium | High | 2 | Large lists identified |
| Performance monitoring | Low | High | 2 | Analytics setup |
| Database optimization | Medium | Very High | 2 | Backend access |
| Bundle analysis | Low | High | 3 | Build pipeline |
| PWA features | Medium | Medium | 3 | Service worker knowledge |
| CSS optimization | Medium | Medium | 3 | CSS audit |
| Third-party optimization | Low | High | 3 | Script inventory |
| Memory leak prevention | Medium | Medium | 4 | Development practices |
| Web Workers | High | Medium | 4 | Heavy computation identified |
| SSR/SSG | Very High | Very High | 4 | Framework migration |

Enter fullscreen mode Exit fullscreen mode