Astro is an all-in-one web framework for building fast, content-focused websites.
Astro is an all-in-one web framework for building fast, content-focused websites.
Pioneered by Astro.
Islands refer to an interactive UI component on an otherwise static page of HTML. Multiple islands can exist on a page, and an island always renders in isolation.
Astro generates every website with zero client-side JavaScript, by default. Use components from frameworks such as Vue or React and Astro will automatically render to HTML ahead of time and strip out all JavaScript.
Pioneered by Astro.
JavaScript hydration occurs per component.
// Load on page load <MyComponent client:load /> // Load once the rest of page is done loading <MyComponent client:idle /> // Load once component is visible in user's viewport <MyComponent client:visible /> // Load whenever specific media query is met <MyComponent client:media={QUERY} /> // Skip HTML rendering and client loads JavaScript <MyComponent client:only={FRAMEWORK} />
// Load on page load <MyComponent client:load /> // Load once the rest of page is done loading <MyComponent client:idle /> // Load once component is visible in user's viewport <MyComponent client:visible /> // Load whenever specific media query is met <MyComponent client:media={QUERY} /> // Skip HTML rendering and client loads JavaScript <MyComponent client:only={FRAMEWORK} />
Astro includes it’s own type of components using the .astro
file extension.
JavaScript inside Astro components cannot be hydrated.
--- const fruits = [ 'apple', 'banana', 'strawberry', 'pineapple'] --- <h1>Fruits</h1> <ul> { fruits.map(fruit => <li>{fruit}</li>) } </ul> <style> h1 { color: steelblue; } ul { padding: 0; } </style>
--- const fruits = [ 'apple', 'banana', 'strawberry', 'pineapple'] --- <h1>Fruits</h1> <ul> { fruits.map(fruit => <li>{fruit}</li>) } </ul> <style> h1 { color: steelblue; } ul { padding: 0; } </style>
Astro also supports components from other frameworks:
Using Astro integrations, frameworks can be easily added.
npx astro add vue
npx astro add vue
import vue from '@astrojs/vue'; export default { // ... integrations: [vue()] }
import vue from '@astrojs/vue'; export default { // ... integrations: [vue()] }
Launching projects at warp speed
Astro has numerous integrations available that can be easily added to your project.
Zero JS by default.