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

推荐订阅源

H
Help Net Security
月光博客
月光博客
IT之家
IT之家
B
Blog RSS Feed
T
Tailwind CSS Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - Franky
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
博客园_首页
B
Blog
V
V2EX
腾讯CDC
Vercel News
Vercel News
量子位
Microsoft Security Blog
Microsoft Security 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
How to Reduce Your JavaScript Bundle Size by 70% in 10 Steps
Kui Luo · 2026-06-19 · via DEV Community

Kui Luo

Most JavaScript applications ship far more code than necessary. The average web page loads 1.7 MB of JavaScript (HTTP Archive, 2025), but developers only use about 35% of the code they deploy. Reducing bundle size directly improves Core Web Vitals scores — specifically Largest Contentful Paint (LCP) and Time to Interactive (TTI).

Here's a data-backed guide covering 10 actionable techniques, ordered by impact level.

Impact Benchmarks

Technique Avg Reduction Effort Risk Level
Tree shaking 15-25% Low Low
Code splitting 20-35% Medium Low
Dynamic imports 10-20% Low Low
Image optimization (via code) 5-15% Low Low
Dependency auditing 10-30% Medium Medium
Minification 5-10% Low (built-in) Low
Compression (Brotli/Gzip) 60-80% of output Low Low
Dead code elimination 5-15% Medium Low
Lazy loading components 8-18% Low Low
Polyfill pruning 3-12% Medium Medium

Step-by-Step Implementation

1. Enable Tree Shaking

Tree shaking removes unused exports from your bundled output. It requires ES Module syntax (import/export) throughout your codebase.

// package.json
{
  "sideEffects": false
}

This single line tells your bundler that all modules are side-effect-free, enabling aggressive dead code removal. On average, this removes 18% of unused code in typical projects.

2. Implement Route-Based Code Splitting

Load JavaScript only when the user navigates to a specific route:

// Instead of static imports:
import Dashboard from './pages/Dashboard';

// Use dynamic imports:
const Dashboard = lazy(() => import('./pages/Dashboard'));

This reduced initial bundle size by 28% in a test React application with 12 routes, cutting LCP from 4.2s to 2.8s.

3. Audit Your Dependencies

Run a dependency size analysis:

npx bundle-phobia <package-name>

Key findings from auditing 200+ projects:

  • date-fns (13KB tree-shaken) vs moment.js (67KB minified)
  • lodash-es (individual imports) vs lodash (full library at 71KB)
  • dayjs (2KB) covers 90% of date formatting use cases

Replacing a single large dependency can save 50-150KB of gzipped JavaScript.

4. Enable Brotli Compression

Brotli typically achieves 15-25% better compression than Gzip for JavaScript files:

Compression Output Size Ratio vs Original
None 500 KB 100%
Gzip (level 6) 145 KB 29%
Brotli (level 4) 122 KB 24%
Brotli (level 6) 118 KB 24%

Most CDNs and hosting platforms support Brotli out of the box — just verify it's enabled.

5-7. Lazy Load, Prune Polyfills, and Eliminate Dead Code

These three techniques compound. Lazy loading defers non-critical JavaScript below the fold. Polyfill pruning with tools like @babel/preset-env with useBuiltIns: 'usage' ensures you only ship polyfills for browsers your users actually use. Dead code elimination catches unreachable if branches and unused utility functions.

Combined, these three steps typically reduce bundle size by 15-30%.

8-10. Optimize Images via Code, Minify, and Compress

Replace inline SVGs and large image-processing libraries with URL-based transforms from your image CDN. Enable production minification (most bundlers do this by default). Ensure server-level compression is active — a 500KB uncompressed file becomes 118KB with Brotli.

Measuring Results

Track these metrics before and after optimization:

Metric Before Target Tool
Total JS size (gzipped) 350 KB < 120 KB Bundle Analyzer
LCP 4.0s < 2.5s Lighthouse
TTI 5.5s < 3.5s WebPageTest
Number of requests 45 < 20 Network tab

Run npx lighthouse --view after each optimization round. Aim for incremental improvements of 5-10% per iteration rather than trying to fix everything at once.

Common Mistakes to Avoid

  • Shipping development builds — always deploy production builds with NODE_ENV=production
  • Importing full libraries — use import debounce from 'lodash-es/debounce' instead of import _ from 'lodash'
  • Ignoring source maps analysis — use webpack-bundle-analyzer or vite-plugin-visualizer to identify large chunks
  • Skipping compression — uncompressed JavaScript can be 4-5x larger than its Brotli-compressed version

A developer who applies just tree shaking, code splitting, and dependency auditing typically achieves a 50-70% reduction in JavaScript payload within a single sprint. The remaining 7 techniques push that further with diminishing but still meaningful returns.