Web Dev Tools

Frameworks & Meta-frameworks

The full-stack and meta-frameworks worth knowing in 2026.

React-based

  • Next.js 16 — the default. App Router, Server Components, Server Actions, Turbopack dev. Pick if you want maximum library / hosting compatibility.
  • React Router 7 (formerly Remix) — web-platform-aligned, loaders/actions, Vite, deploys anywhere. Pick if you like the loader model and want first-class edge support.
  • TanStack Start — type-safe routing taken to the extreme. Pick if your app is client-heavy and you want strong types across navigations.
  • Waku — a minimalist React Server Components framework from Daishi Kato. Pick if you want to learn RSC without Next.js's surface area.
  • Expo Router (mobile, but worth a mention) — React Native + web with file-based routing.

Vue-based

  • Nuxt 4 — full-stack Vue, Nitro deploy adapters, server routes, content module. Closest thing Vue has to Next.js.
  • VitePress — Vue-based docs framework (used by Vue, Vite, Vitest themselves).

Svelte-based

  • SvelteKit — Svelte 5 + runes; loaders, actions, deploy adapters for every host.

Solid-based

  • Solid Start — built on Vinxi, fine-grained reactivity. Niche but mature.

Multi-framework / "Renderer-agnostic"

  • Astro 6 — content-first, multi-framework islands. Best for docs, blogs, marketing sites.
  • Qwik / Qwik City — resumable apps, no hydration. Niche but interesting.

Backend-only

  • Hono — tiny, edge-friendly, runs on Workers, Bun, Deno, Node, Vercel, Lambda. The default for new edge APIs.
  • Fastify — fast, plugin-rich Node framework; great choice for non-edge Node APIs.
  • NestJS — opinionated Angular-style backend; popular in larger teams and enterprises.
  • Elysia — Bun-first, type-safe, fast. The Hono of the Bun world.
  • AdonisJS — full-stack Node with batteries; Rails-shaped.

Pick this if…

  • You want maximum compatibility: Next.js.
  • You want clean data flow + edge: React Router 7 or TanStack Start.
  • You're building content: Astro.
  • You want less code per feature: SvelteKit.
  • You're building an API only: Hono.
  • You want one system to deploy anywhere: Nuxt 4 (best deploy adapter story) or Hono (best edge).

On this page