Skip to content
Tanzim Hossain edited this page Aug 6, 2026 · 6 revisions

NextRush

NextRush is a TypeScript web framework built to eliminate accidental complexity from backend development. Applications get a small, explicit core, a runtime-independent execution model, and a class-based layer on top for teams that prefer declarative APIs — with no framework lock-in in either direction.

v4 is current — ESM-only, Node ≥ 22, TypeScript 5.x. See Getting Started to start a server in under a minute.

What NextRush looks like

import { createApp, listen } from 'nextrush';

const app = createApp();

app.get('/hello/:name', (ctx) => {
  ctx.body = { message: `Hello, ${ctx.params.name}!` };
});

await listen(app, 8080);

Handlers write through the Context — no returned Response objects, no hidden global state.

Why NextRush

  • One obvious golden path — copy-paste-runnable, working out of the box.
  • Runtime independent — the same app runs on Node, Bun, Deno, and edge runtimes via adapters; core speaks only Web-standard primitives.
  • Small core, two layers — a functional core (routes, middleware, context) and an optional class runtime (controllers, DI, modules) that is a registrar on top of the core, not a rewrite.
  • Zero-dependency core — the framework owns complexity; applications stay lean and fast. See Performance for the benchmark scoreboard.
  • Excellent DX — strict types, actionable errors, autocomplete-friendly APIs, testing built around real objects, not mocks.

Explore

External

Clone this wiki locally