02 / CATEGORY

Web and app platforms

Frameworks and platforms that shape how modern products are built, shipped and maintained.

6 long-form field guides
06Web + apps7 min

fastapi / fastapi

FastAPI turns Python type hints into an API contract

FastAPI takes declarations Python developers already recognize and uses them to parse requests, validate data, serialize responses, produce OpenAPI, and drive interactive documentation. The result is an unusually direct route from a typed function to an inspectable HTTP interface, provided the team understands what the framework deliberately leaves out.

11Web + apps7 min

supabase / supabase

Supabase builds the backend platform around Postgres, not over it

Supabase assembles a dedicated PostgreSQL database, authentication, storage, realtime communication, generated APIs, functions, and management tooling into one development platform. Its defining choice is that the database remains visible and usable as Postgres rather than disappearing behind a proprietary document model.

16Web + apps7 min

honojs / hono

Hono brings one Web Standards framework across JavaScript runtimes

Hono builds its request, response, routing, and middleware model around Web Standards, then supplies adapters for edge platforms and conventional JavaScript runtimes. The result is a small TypeScript framework that can preserve much of its application shape across Cloudflare Workers, Deno, Bun, Node.js, serverless targets, and other environments.

25Web + apps7 min

django / django

Django still wins by making the boring decisions early

Django brings an ORM, migrations, authentication, administration, forms, templates, middleware, security protections, caching, sessions, email, and many other web concerns into one documented framework. Its breadth can feel heavy beside a tiny API library, but it is exactly why a small team can build a durable database-backed product without choosing every subsystem separately.