Blog Template
El Admin

Introducción a Astro.js

Disponible en:

Introducción a Astro.js

Astro is an all-in-one web framework designed for speed. Its main goal is to render as little client-side JavaScript as possible.

What is Islands Architecture?

The key concept of Astro is Islands Architecture. Imagine your webpage as a sea of static HTML. Floating in that sea are “islands” of interactivity.

Note: Static parts allow zero JS to be sent to the browser, making loading instant.

Code Example

Here is what a basic .astro component looks like: