staticsite
A staticsite, or static site, is a website that serves pre-rendered HTML, CSS, and JavaScript as fixed files rather than generating pages on each request. Such sites are typically produced by static site generators or by manually writing HTML that is compiled into a set of static assets. Content may be written in Markdown or other data formats and combined with templates during a build process. Once generated, the pages are deployed to a static hosting environment and delivered directly to users.
Static sites are built ahead of time. A build process assembles content, templates, and data into a
Static sites typically offer fast page loads, strong security with a small attack surface, straightforward scaling,
Static sites are less suited to highly dynamic content or personalized experiences that require server-side rendering.
Popular tools include static site generators such as Jekyll, Hugo, Eleventy, Gatsby, and Next.js in static export