Static Hosting
ELI5 — The Vibe Check
Static hosting is when you serve pre-built HTML, CSS, and JavaScript files directly — no server-side logic, no database queries per request. The files are generated once at build time and served from a CDN. It's incredibly fast, cheap, and practically unbreakable. Vercel and Netlify are built for this.
Real Talk
Static hosting serves pre-generated files (HTML, CSS, JS, images) from a web server or CDN without server-side processing per request. Content is generated at build time. Extremely fast (served from CDN edge), cheap, highly available, and secure (no server to compromise). Powers JAMstack and SSG frameworks.
When You'll Hear This
"The marketing site is static hosting on Vercel — no server needed." / "Static hosting on S3 with CloudFront costs almost nothing at our traffic level."
Related Terms
CDN (Content Delivery Network)
A CDN is a network of servers spread around the world that store copies of your files.
Edge Computing
Your server is in Virginia. Your user is in Tokyo. Every request travels 10,000 km and back.
JAMstack
JAMstack stands for JavaScript, APIs, Markup.
Netlify
Netlify is like Vercel's cooler older sibling that was doing the automatic-deploy-from-GitHub thing before it was cool.
S3 (Simple Storage Service)
S3 is Amazon's giant file locker in the sky.
SSG (Static Site Generation)
SSG builds all your pages ahead of time — before anyone visits. You get a folder of plain HTML files that are blazing fast to serve from a CDN.