Skip to content

SYSTEM Cited by 1 source

Express

Express (expressjs.com) is the historical-default Node.js web framework — minimalist, imperative, bare-HTTP-server with middleware-chain-as-architecture. The canonical reference point for "a Node.js web app" since ~2010.

Stub

This page covers only what currently-ingested sources name about Express. Broader Express internals (middleware chain, router, view engines) are out of scope until a source discusses them.

Relevance to the wiki (2026-04-21)

Canonical bare- HTTP framework — as named by Vercel's 2026-04-21 WDK post verbatim: "For frameworks without a bundler like Express or Hono, we use Nitro instead. ... These frameworks don't ship with a build system, i.e. they don't have a bundler, and just expose a bare HTTP server."

Integration for WDK therefore requires the virtual- handler-via-Nitro shim: esbuild bundles workflows, Nitro wraps the Express app at runtime + injects the virtual handlers to expose workflow endpoints.

Key properties (named by ingested sources)

  • Bare HTTP serverapp.get(path, handler) is imperative; no file-based routing to drop handlers into.
  • No bundler — ships as a library, not a framework with a build system.
  • Launch-supported WDK framework (2026-04-21) via the Nitro shim.

Seen in

Last updated · 476 distilled / 1,218 read