All glossary terms
Design

Island architecture

Island architecture is the frontend pattern where most of a page is static server-rendered HTML with no client JavaScript, and only the interactive components (the 'islands') hydrate independently. Frameworks include Astro, Marko, and Eleventy with the Islands plugin. The model dramatically reduces shipped JavaScript for content-heavy sites.

The pattern is the architectural response to the observation that most pages are mostly static content with a few interactive elements (search box, modal trigger, comment widget) — yet traditional SPAs ship JavaScript for the entire page. Island architecture inverts the default: ship zero JavaScript, then opt into per-island hydration only where interactivity is required. The benefit is dramatic on content-heavy sites (blog, marketing, docs); the trade-off is harder cross-island state sharing (each island is independent by default). The pattern is converging with React Server Components on the same insight from different starting points.

Related terms