DEV Community

Cover image for Building a high performance website in 2023. πŸš€
Dimitris Kiriakakis
Dimitris Kiriakakis

Posted on

Building a high performance website in 2023. πŸš€

A few weeks back, I decided to give my personal website a fresh makeover. My main objective was to establish a benchmark in terms of performance, accessibility, and Web Vitals scores. It took me some late nights, but I am pretty satisfied with the result.

In search of the perfect framework for the job, I first tried out NextJS and Nuxt, however the first results I got were discouraging. Namingly there was a considerable amount of JS being shipped and it didn't look like I would be able to make it close to scoring 100 in the PageSpeed Insights, which was my ultimate goal.

Eventually I joined the Astro hype and went for the latest release (v3.4.3) on the frontend and Strapi (v4.14.5) on the Content Management side.

Why Astro? For 3 reasons:
⭐ Astro renders the entire page to static HTML, removing all JavaScript from the final build by default. 100% Static HTML, No JS.
⭐ On-Demand Components: You need some JS? Astro can automatically hydrate interactive components when they become visible on the page. If the user never sees it, they will never be loaded.
⭐ It follows a Bring Your Own Framework (BYOF) approach: You could basically build a site using React, Svelte, Vue, Preact, web components, or just plain HTML + JavaScript. Perfect for my case, since I wanted to reuse some Vue components from my old website.

As it turns out, Astro enables developers to combine astro components with components from other frameworks. For instance these are the components I used for my website:

Astro components structure

As you can see, since in my case the portfolio and FAQ pages contain a lot of interactivity, I decided to render these 100% on the client. Below is the faqs.astro page, which renders the related Vue component, client-only.

Astro page, example including a Vue component

The wrapping layout is the same like in any page and it is server side rendered by Astro, while the content of the page will be rendered on the client's browser by Vue. Note that you could do the same, using components from all the frameworks that Astro supports.

Some other things I really liked about Astro were the tooling, the documentation and the built-in Astro components like <Image> and <Icon>. The <Image> component can transform, optimise and bundle the images for you.

<Image src={localBirdImage} alt="A bird sitting on a nest of eggs."/>
Enter fullscreen mode Exit fullscreen mode

On the other hand, the <Icon> component enables the developer to use icons from popular libraries like Material Icons and Fontawesome without having to deal with the hassle of importing their resources and finding a way to load them efficiently.

<!-- Automatically fetches and inlines Material Design Icon's "account" SVG -->
<Icon pack="mdi" name="account" />
Enter fullscreen mode Exit fullscreen mode

When it comes to managing content, Strapi is my favourite open-source, NodeJS based, Headless CMS, giving me the flexibility I need in terms of content management, filtering and querying. By the way, while building the queries for the individual pages I discovered its Interactive Query Builder, which helped me a lot.

The Astro website was deployed on Netlify and the Strapi instance on an EC2 host on Amazon Web Services (AWS).

PageSpeed Insights of my Astro website

You can check out my website under dimeloper.com

Overall, I had one of the smoothest experiences I ever had with a new framework, so I hope that this post will encourage more developers to start using Astro.

Top comments (0)