Hero image for Choosing Frontend Frameworks

Choosing Frontend Frameworks

• 3 min read
Frontend Frameworks Astro Next.js Architecture Developer Experience

🧠 “Choose the frontend framework that best fits the constraints of the project. Think long-term.”


Over the past few years, I’ve worked with several frontend tools — from traditional server-rendered apps to static site generators and hybrid frameworks. While I’ve come to prefer certain technologies for their clarity and performance, I try to stay pragmatic rather than prescriptive.

In this post, I’ll outline how I approach framework decisions based on a project’s type, scope, and long-term goals.

1. Understand the Project First

Before considering the frontend stack, I try to answer a few fundamental questions:

The answers to these shape the technical requirements more than any framework feature list.

2. My Go-To Frameworks (And When I Use Them)

Here’s a simplified view of how I tend to evaluate tools for specific types of projects:

✅ Astro – For Content-First, Performance-Oriented Sites

✅ Next.js – For Hybrid Sites or Apps with Mixed Requirements

✅ Plain HTML + Tailwind + Alpine.js – For Minimalist or One-Off Tools

3. What I Prioritize When Making a Decision

🔹 Developer Experience (DX)

If I’ll be maintaining the project solo, I favor tools that reduce friction — clear folder structure, fast HMR, good docs, and minimal boilerplate. Astro and Vite-based tools tend to shine here.

🔹 Performance

For public-facing projects, especially ones dependent on organic traffic, I bias toward tools that ship minimal JS and support partial hydration. Astro has become a strong default in these cases.

🔹 Maintainability

If a project is expected to grow in complexity or outlive its MVP phase, I factor in things like routing control, testing ecosystem, TypeScript support, and state management flexibility.

4. On Over-Optimizing Up Front

It’s tempting to start with the “perfect” stack — but in practice, many projects evolve faster than the framework that was chosen for them. I’ve come to value:

Sometimes, it’s better to get something working with familiar tools and iterate.

Closing Thoughts

Choosing a frontend framework isn’t just about tech specs — it’s about aligning tools with business goals, timelines, and the people working on the project. While I personally reach for Astro or Next.js most often, I try to keep the decision grounded in the problem space, not personal bias.

If the framework helps me ship something maintainable, fast, and usable — then it’s the right choice for that project.

🏷 Tags

Frontend · Framework Choice · Astro · Next.js · Developer Experience · Architecture