Notes and Takeaways from Web Unleashed 2024

This year I attended Web Unleashed 2024 in the lovely city of Toronto, Canada which reinvigorated my passion for web development. Between hallway conversations, live coding demos, and deep dives into modern web performance, I walked away with a notebook full of ideas and a renewed appreciation for the craft of frontend engineering.

I attended talks on Next.js, Astro.js, TypeScript, Tailwind, React Server Components (RSCs) and modern caching, but the standout for me was "How to Think Like a Performance Engineer" workshop by Harry Roberts. If you’ve ever read CSS Wizardry you know Harry's approach, which is data-driven and extremely pragmatic.

How to Think Like a Performance Engineer

This was a hands-on workshop which helped reframe how I think about diagnosing and optimizing performance. Instead of treating Core Web Vitals like arbitrary scores, he encouraged us to look at the relationships between key metrics:

He stressed not just fixing numbers but understanding the gaps between them. For example, if TTFB is fine but there’s a long delay before FCP, your issue probably lives in the head element of your HTML with render-blocking CSS or synchronous scripts.

One of his best one-liners:

You can’t just fix LCP, you have to chip away at it.

Some other gems from the session:

I also appreciated how Harry contextualized tools like performance.mark(), performance.measure(), and the Server Timing API for more advanced diagnosis. He even shared WebPageTest recipes for testing cookie banners, blocking third parties, and simulating user journeys.

Session Highlights

Beyond that session, Web Unleashed was packed with talks that hit both technical depth and practical takeaways:

Level Up Your TypeScript

This was a standout session: reasoning about unions, intersections, and utility types like set theory.

Key Insights

Next.js vs. Astro: FIGHT

An engaging and surprisingly technical comparison of frameworks.

Redirect handling and ISR flexibility differ. Astro gives you control, but you need to implement the headers yourself. Middleware should execute in under 100ms.

My question: If moving away from React, what frameworks would you explore via Astro? Answer: Svelte and Solid both integrate well for partial hydration.

Personalized and Localized Digital Experiences

Showcase of composable CMS and AI integration for React-based content systems:

This demonstrated how much content tooling has matured; it’s no longer about choosing one CMS, but composing APIs and SDKs for your own stack.

Final Thoughts

Web Unleashed 2024 reinforced a critical shift in frontend engineering: it's becoming less about tools and more about systems thinking.

Whether it's server components, caching primitives, or performance budgets, the focus is shifting from chasing scores to building measurable, resilient experiences.

Harry Roberts’ workshop was the standout for me, but every session connected in one theme:

Measure what matters, and build deliberately.

Resources