ElianCodes

← Back to blog

Less JavaScript, Faster Website - Astro

14th of October, I gave a lightning talk at React Brussels. This blog post contains my slides as well as some extra accompanying speaker notes.

Keep in mind that this was a lightning talk between 4 and 10 minutes long.

Last updated: 10/19/2022 10:27

Me at the conference

ā˜ļø me at the conference!

The Slides

Thanks for taking an interest in the slides!

So, Iā€™m Elian, a software engineer at vBridge in Belgium šŸ‡§šŸ‡Ŗ.

Iā€™m also an Ambassador for Astro.

Slide 1

So what is Astro?

Slide 2

Astro is a lightning fast framework!

Slide 3

Even better, itā€™s a blazing fast framework!

Slide 4

Or even a primeagen fast framework!

Slide 5

Or just simply Astronomically fast!!!

Slide 6

So; Why was I talking about a different Framework than React at React Brussels?

Itā€™s because Astro loves React right!

Slide 7

Astro is based on an island component design architecture, what does this mean?

Slide 8

Well, Astro doesnā€™t only love React, itā€™s a bring your own framework to the party kinda framework!

Slide 9

One of the amazing things about Astro, is that it can be experienced right now in your browser by heading to astro.new & trying it out! Right there in your browser!

Youā€™ll see that we do have templates for all of your favourite frameworks; including React, Preact, Vue, svelte and so on.

Slide 10

Astro also has a lot of official and community driven integrations. All of them are documented and collected on the Astro website!

The React integration is right there on the Astro integrations & Frameworks tab!

Letā€™s take a look at using React in Astro in a short demo:

Slide 11

So letā€™s pop in our terminal here and set up a new astro project by using our favourite node package manager:

Iā€™ll use yarn create astro

Astro will ask us what kind of project weā€™d like, Iā€™ll choose an empty one, since I want to show of how easy this is.

Astro supports TypeScript, so it will ask us if we want to use that for our project.

Thatā€™s how easy it is to set up a new project with astro

Slide 12

Letā€™s take a closer look at writing and using a React Component in Astro

Slide 13

letā€™s add a very simple React counter component that youā€™ve all probably used before. A basic number and two buttons, one decreasing the value and one increasing the value.

Letā€™s add some HTML in our index.astro file.

Letā€™s add some basic styling in the frontmatter of our Astro page, and import our newly created <Counter /> component in there and add it on the page.

If we now build our Astro project and preview it, Weā€™ll see the imported React Counter component on the page

Slide 14

Okay, so a lot of this probably feels very familiar for you guys that have used React before, so whatā€™s the difference?

Astro ships no JavaScript at all by default. Although components might be written in JavaScript or a JavaScript framework.

Of course, if youā€™ve got no JavaScript, youā€™ve got no interactivity!

But what if we need to make a component interactive?

Slide 15

That is where partial hydration comes in!

Slide 16

So, probably you are thinking ā€œwhat the fuck is partial hydration?ā€

Well, here is the perfect analogy to understand it;

Slide 17

If you donā€™t water / hydrate a plant enough. The plant will feel very sad

If you hydrate too much; the plant will drown. This is the same for web applications. The application will be drowned in technical debt, bundle size and complexity!

Letā€™s take a deeper look into this:

Slide 18

Imagine you have this page. All of those components will require JavaScript to properly render. Even though some of them, like the footer are completely static and donā€™t require interactivity.

Slide 19

Actually, you probably want something more like this; Where you just select the components you need to be interactive and ship JavaScript to those components only.

Slide 20

Astro makes this possible by using the client: directive.

Slide 21

Using the client directive, you have complete control over which components should use JavaScript, but also have flexibility to choose when or how the component should become interactive.

Slide 22

There are a couple of options for hydration, letā€™s take a look at them!

Slide 23

Firstly thereā€™s the client:load directive which will just start hydrating the component as soon as the initial DOM content is loaded.

You could also opt for the client:idle directive, which will start importing the component JavaScript as soon as the main browser thread is free.

Slide 24

Now letā€™s also take a look at how to use this in our code and what the effect is on our result.

Slide 25

There is also client:visible which only will start importing the JavaScript as soon as the component enters the viewport.

Another option is the client:media directive which just starts hydrating the component as soon as the given media query requirements are met.

Slide 26

So letā€™s hydrate our component here using client:visible and see what that means for our end result.

Slide 27

Of course, Astro is a lot more than just deciding if we should hydrate a component or not!

Slide 28

Astro also supports:

But also there are native integrations with popular packages, like Tailwind and Partytown

Slide 29

So, not only is Astro an amazing framework, itā€™s also driven by a beautiful community, so come chat with us on discord!

Here are some more links that can guide you on your journey in Astro!

Slide 30

If you decide to give astro a spin, be sure to tag me on twitter :D

Thatā€™s it for me!

Elian Out!

Thanks

Huge thanks you to Aymen & Omar for organising this talk & asking me! šŸ™

Big thanks for everyone helping me out and listening to my talk! šŸ™

Special thanks to Fuzzy for helping me out finishing my slides! šŸ™šŸ»

Written by Elian Van Cutsem

← Back to blog