New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

routup

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

routup

Routup is a minimalistic http based routing framework.

latest
Source
npmnpm
Version
6.1.0
Version published
Weekly downloads
613
-62.64%
Maintainers
1
Weekly downloads
 
Created
Source

Routup banner

Routup 🧙‍

npm version main codecov Known Vulnerabilities Conventional Commits

Routup is a minimalistic, runtime-agnostic HTTP routing framework for Node.js, Bun, Deno, Cloudflare Workers, and Service Workers. Handlers return values directly — routup converts them to Web Response objects automatically, with built-in support for ETags, content negotiation, per-handler timeouts, and cooperative cancellation via AbortSignal.

Table of Contents

Installation

npm install routup --save

Features

  • 🚀 Runtime agnostic — Node.js, Bun, Deno, Cloudflare Workers, Service Workers
  • 🌐 Web-standard APIs — built on Request / Response for portability
  • 📝 Return-based handlers — return strings, objects, streams, Blobs, or Response directly
  • Async middleware — onion model with event.next()
  • 🧭 Pluggable router & cacheLinearRouter (default), TrieRouter, or SmartRouter (auto-selects); opt-in LRU lookup cache
  • ⏱️ Per-handler timeouts — bounded execution with AbortSignal cooperative cancellation
  • 🏷️ Automatic ETag & 304 — strong/weak ETags out of the box, configurable per app or disabled entirely
  • 🤝 Content negotiation — accept, accept-language, accept-encoding, accept-charset helpers
  • 📡 Streaming & SSEReadableStream responses and createEventStream() for server-sent events
  • 📂 Static file servingsendFile() with ETag, range, and MIME detection
  • 🔌 Plugin system — extend with reusable, installable plugins
  • 🌉 Express middleware bridge — wrap legacy (req, res, next) handlers via fromNodeHandler()
  • 🧰 Tree-shakeable helpers — import only what you use
  • 📁 Nestable apps — modular route composition with mount paths
  • 👕 TypeScript first — fully typed API with generics
  • 🤏 Minimal footprint — small core, no bloat

Documentation

To read the docs, visit https://routup.dev

Usage

Handlers

Handlers receive an event and return a value. Routup converts the return value to a Web Response automatically.

Shorthand

import { App, defineCoreHandler, defineErrorHandler, serve } from 'routup';

const app = new App();

app.get('/', defineCoreHandler(() => 'Hello, World!'));
app.get('/greet/:name', defineCoreHandler((event) => `Hello, ${event.params.name}!`));
app.use(defineErrorHandler((error) => ({ error: error.message })));

serve(app, { port: 3000 });

Verbose

import { App, defineCoreHandler, serve } from 'routup';

const app = new App();

app.use(defineCoreHandler({
    path: '/',
    method: 'GET',
    fn: () => 'Hello, World!',
}));

app.use(defineCoreHandler({
    path: '/greet/:name',
    method: 'GET',
    fn: (event) => `Hello, ${event.params.name}!`,
}));

serve(app, { port: 3000 });

Return Values

Return typeResponse
stringtext/plain
object / arrayapplication/json
ResponsePassed through as-is
ReadableStreamStreamed to client
BlobSent with blob's content type
nullEmpty response (status from event.response)

Middleware

Middleware calls event.next() to continue the pipeline:

app.use(defineCoreHandler(async (event) => {
    console.log(`${event.method} ${event.path}`);
    return event.next();
}));

Pluggable router and cache

The route table is pluggable via the router option. The default LinearRouter is best for small apps; swap to TrieRouter for radix-trie matching on apps with many routes, or SmartRouter to auto-select between the two based on the registered route shape at first lookup. Each router accepts an optional cache for memoizing lookups — opt-in via LruCache (or any ICache implementation); pass null to disable.

import { App, TrieRouter, LruCache, defineCoreHandler } from 'routup';

const app = new App({
    router: new TrieRouter({ cache: new LruCache() }), // omit `cache` for no memoization
});

Timeouts and cancellation

Configure a global timeout for the whole pipeline, a default per-handler timeout, or both. When a deadline fires, event.signal is aborted so handlers can cooperatively cancel signal-aware work; if nothing recovers in time, routup returns 408 Request Timeout.

const app = new App({
    timeout: 30_000,         // entire request
    handlerTimeout: 5_000,   // default per handler; handlers can narrow further
});

app.get('/fetch', defineCoreHandler(async (event) => {
    const res = await fetch('https://api.example.com', { signal: event.signal });
    return res.json();
}));

Runtimes

Routup runs on Node.js, Bun, Deno, and Cloudflare Workers. In most cases, import from routup:

import { App, defineCoreHandler, serve } from 'routup';

const app = new App();
app.get('/', defineCoreHandler(() => 'Hello, World!'));
serve(app, { port: 3000 });

For runtime-specific APIs (e.g. toNodeHandler), use the corresponding entrypoint like routup/node.

Templates

Scaffold a new project from any starter in routup/templates with degit:

npx degit routup/templates/node-api my-app
TemplateRuntimeHighlights
node-apiNode.js >=22JSON API with @routup/body
cloudflare-workerCloudflare WorkersConfigured with wrangler
bun-decoratorsBunClass-based routing via @routup/decorators

Plugins

Routup is minimalistic by design. Plugins extend the framework with additional functionality.

NameDescription
assetsServe static files from a directory
basicBundle of body, cookie, and query plugins
bodyRead and parse the request body
cookieRead and parse request cookies
corsCross-Origin Resource Sharing (CORS) middleware
decoratorsClass, method, and parameter decorators
i18nTranslation and internationalization
loggerHTTP request logger with morgan-compatible tokens and presets
prometheusCollect and serve Prometheus metrics
queryParse URL query strings
rate-limitRate limit incoming requests
rate-limit-redisRedis adapter for rate-limit
swagger-uiMount swagger-ui-dist on any path

Comparison

How routup stacks up against other popular Node.js routing frameworks. This is a best-effort summary; check each project's docs for the full picture.

routupHonoExpressFastify
RuntimesNode, Bun, Deno, Cloudflare, Service WorkerNode, Bun, Deno, Cloudflare, Lambda, VercelNodeNode
Web-standard Request / Response
Return-based handlers
TypeScript-firstcommunity types
Tree-shakeable helpers
Onion middleware (next())linear next()lifecycle hooks
Pluggable router (linear / trie)✅ linear, trie, or auto-selecttrie onlylinear onlyradix only
Built-in ETag + 304via pluginvia plugin
Per-handler timeout + AbortSignalserver-level
Class-based routes (decorators)✅ via plugin
Express middleware bridgefromNodeHandlern/alimited
Schema validation built-in

Contributing

Before starting to work on a pull request, it is important to review the guidelines for contributing and the code of conduct. These guidelines will help to ensure that contributions are made effectively and are accepted.

License

Made with 💚

Published under MIT License.

Keywords

api

FAQs

Package last updated on 28 Jul 2026

Related posts