illustration of Need for Speed

Need for Speed

Archived: How my website achieves blazing fast performance: SSG to serverless on the (bleeding) edge.


Outdated Content: I migrated off the described tech stack for personal reasons. But technically, it worked flawlessly for many years, so give it a shot if you're interested!

This site had one primary goal: be as fast as possible. I don't care about conversion rates (a different topic where speed equals money), but inclusion. Many people are browsing with their (often weak) mobile phones exclusively and in suboptimal conditions (indoor cellular, shared WiFi spot). They are waiting several seconds for most "modern" websites to load!

While theoretically our average connectivity infrastructure and devices have gotten faster over the years, the perceived performance of websites has not. Websites and apps have become increasingly complex, bloated, and chock-full of tracking, advertising, and other scripts running in the background.

I tend to believe that developers entering the field recently are just accustomed to using several frontend frameworks for styling and logic, that stakeholders demand more "fancy" stuff from them, but everything must be as cheap as possible, forming a vicious circle.

I do not want this any longer, neither as a developer nor as a user. My blog has no stakeholders other than me. I know how to do this a better way. There are many people out there who do not have the privilege of owning the latest iPhone and can count on super fast WiFi or at least LTE everywhere, but I want to provide them with my writings as well.

Website Building, the Basics

The fastest, leanest way to deliver content-based websites to readers is via plain HTML, period. Handcrafted, small, accessible. Read: not a mess of div and gazillions of CSS classes or inline styles.

Building every single page completely by hand, updating listings, and so on is not a sustainable option for me. I need to render some templates and partials dynamically, or things will get messy very fast. But leveraging a full-blown backend technology might be overkill, too! Aside from me writing something new, there are zero updates to stuff in any way, so why have precious milliseconds wasted for "rendering" every page on demand, having to maintain yet another server or service and think about admin things?

There is a better way: static site generators. You can have "dynamic templates," sitemap generation, all the stuff one would do on demand with a web server, but without the web server. Everything gets compiled once, after you edit something, and uploaded as final HTML files.

Nowadays, there are several good options out there. Many people use Hugo or Jekyll.

I went with Zola because it smells like Rust and should be the fastest of them all. (Yes, I like my tools on the command line to be fast, too!)

Used correctly, you should have lean, static HTML files at the end, which are fast by default.

Styling Without Bloat

Plain HTML doesn't look that awesome, at least for me. On the other hand, I hate the noise many modern CSS frameworks add to my lean HTML, aside from being several hundreds of kilobytes in size themselves. So, what do I actually need?

  • Some basic text and spacing styles for all elements on the page
  • No surprises with different browsers
  • Something like a responsive grid system

... not that much after all.

As it turns out, there is a recent push towards so-called classless CSS frameworks, or as I would call them, portable stylesheets. They do exactly this: apply some sane defaults to texts, margins, and so on, without the need to markup your HTML with special classes. Nice!

My choice was sakura, but there is an increasing amount of choice available.

The only problem left is that they don't provide a responsive grid system. As I learned, this is actually not a big deal. Browsers do support native CSS grid now!

This empowers me to accomplish stuff like boxes next to each other with ease, just a few lines of CSS required in total.

Overall, my CSS for this website should be in the ballpark of just 2 kilobytes over the wire... quite a feat!

Hosting Near You

So I have statically compiled HTML pages and a minimal CSS file, but the main driver for (not only) perceived performance is latency. If I put my files on a server somewhere, people on the other side of the world would have to wait hundreds of milliseconds until they can see my content.

I can then put a CDN with locations all over the world in front of the server so things would get cached near you. But still, the very first call to something would go straight to my server again, resulting in waiting times.

I went a bit more fancy than that with Cloudflare Workers Sites. It boils down to this: I host my static files directly on the edges of the CDN. At least this is written on the marketing page of the provider and seems to work as promised.

As a result, this website should be as fast as theoretically possible for a minimal amount of work on my part. Some clever inlining of only-relevant CSS in the HTML itself might shave off another millisecond, but stuff like this is not idiomatic and creates some friction on my writing part.

Next Steps

I received some good hints from Hacker News and one thing bugged me: I have no idea what people are actually reading here. Cloudflare does offer some basic traffic data, but only at the domain level.

As someone who actually values privacy, just throwing something like Google Analytics in the HTML template wasn't an option. It would have added multiple times the weight of the actual site, too. And GDPR consent popup windows and the like is also something I love to hate.

Since I have no web server logs to inspect with a script, there is only one solution left: use some frontend tracking that does nothing other than counting page views.

There are a few products out there now, but I see it as a learning project opportunity for me: create a frontend tracking tool that is as lean and fast as possible, that does not use any user data. Just the raw page visit information itself, the "+1" of a URL so to speak.

I think it would be a good small learning project to build something that does exactly this one thing.

Closing Thoughts

I hope I can make a small difference by putting speed front and center for my stuff, so as many people as possible can enjoy what I do. As a side effect, I already got some digital product ideas just from rebuilding this site, like a lean analytics service.

  • Number of words: 1116
  • Reading time: 6 minutes
  • Posted: 2 months ago

Linked Categories

Click around and find out ↓

illustration of Technology
Technology

Stay ahead of the tech curve! Discover cutting-edge tools, trends, and insights tailored for solopreneurs and indie hackers driving innovation.

Discuss on Twitter / X

Related Posts →

illustration of The AI Wrapper Revolution: What It Is and Why It Matters

In the rapidly evolving landscape of artificial intelligence, a new paradigm is emerging that promises to democratize AI application development: AI wrappers. But what exactly are AI wrappers, and why should developers and entrepreneurs pay attention? Let's dive in.

illustration of Custom GPTs vs OpenAPI path parameters

Seems that the AI can't do idiomatic API calls for a RESTful interface after all - or their HTTP client has some bug.

illustration of GPT4o Just Landed And Will Be Free For All!

The latest OpenAI ChatGPT model just got reveiled and it will be free for everyone - but more importantly: the GPT Store will be, too!

illustration of Rewrite it in Rust: Fun Weekend & Happy Wife

How I rewrote a pet project in Rust, shipped it within 2 days start-to-finish, and gained social credit along the way.

illustration of The joy of traditional SSR website development

How I got my sanity back after years of JavaScript madness. Building websites finally is fun again - plus hosting and maintenance is much better!

illustration of The Solopreneur and AI assistants

My thoughts about how solopreneurs and indie hackers can leverage AI tools to delegate work tasks without having employees or paying freelancers.


Latest Posts →

illustration of The AI Wrapper Revolution: What It Is and Why It Matters

In the rapidly evolving landscape of artificial intelligence, a new paradigm is emerging that promises to democratize AI application development: AI wrappers. But what exactly are AI wrappers, and why should developers and entrepreneurs pay attention? Let's dive in.

illustration of Custom GPTs vs OpenAPI path parameters

Seems that the AI can't do idiomatic API calls for a RESTful interface after all - or their HTTP client has some bug.

illustration of GPT4o Just Landed And Will Be Free For All!

The latest OpenAI ChatGPT model just got reveiled and it will be free for everyone - but more importantly: the GPT Store will be, too!

illustration of Rewrite it in Rust: Fun Weekend & Happy Wife

How I rewrote a pet project in Rust, shipped it within 2 days start-to-finish, and gained social credit along the way.

illustration of The joy of traditional SSR website development

How I got my sanity back after years of JavaScript madness. Building websites finally is fun again - plus hosting and maintenance is much better!

illustration of The Solopreneur and AI assistants

My thoughts about how solopreneurs and indie hackers can leverage AI tools to delegate work tasks without having employees or paying freelancers.