Routup banner

Routup ๐Ÿง™โ€

npm version main codecov Known Vulnerabilities Conventional Commits

Routup is a lightweight, runtime agnostic and extendable routing library. It uses node's vanilla request and response interfaces, which are injected into route handlers aka middlewares as function argument. Helpers provide additional functionalities to transform and interact with the request and manipulate the response upstream.

Use the same routing framework for each project, regardless of the used runtime environment (Node.Js, Bun, ... ) ๐ŸŽ‰. Besides, it is even 228% faster than Express (more).

Table of Contents

Installation

npm install routup --save

Features

  • ๐Ÿš€ runtime agnostic (Node.JS, Bun, Deno, ...)
  • ๐Ÿงฐ response & request composables/helpers
  • ๐Ÿ’ผ extendable & compact
  • ๐Ÿ›ซ named route parameters
  • ๐Ÿ“ nestable routers
  • ๐Ÿค๏ธ define one or many (error-) middlewares (inc. express middlewares)
  • โœจ promise support for route- & middleware-handlers
  • ๐Ÿ‘• TypeScript fully supported
  • ๐Ÿค Minimalistic to fit into any solution with minimum overhead
  • & much more

Documentation

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

Usage

NodeJs

import {createServer} from 'node:http';
import {
    createNodeDispatcher,
    Router,
    send
} from 'routup';

const router = new Router();

router.get('/', () => 'Hello World');

const server = createServer(createNodeDispatcher(router));
server.listen(3000)

Bun

import {
    createWebDispatcher,
    Router,
    send
} from 'routup';

const router = new Router();

router.get('/', () => 'Hello World');

const dispatch = createWebDispatcher(router);

Bun.serve({
    async fetch(request) {
        return dispatch(request);
    },
    port: 3000,
});

Deno

import {
    createWebDispatcher,
    Router,
    send
} from 'routup';

const router = new Router();

router.get('/', () => 'Hello World');

const dispatch = createWebDispatcher(router);

const server = Deno.listen({
    port: 3000
});
for await (const conn of server) {
    const httpConn = Deno.serveHttp(conn);

    for await (const requestEvent of httpConn) {
        const response = await dispatch(
            requestEvent.request
        );
        requestEvent.respondWith(response);
    }
}

Plugins

According to the fact that routup is a minimalistic framework, it depends on plugins to cover some typically http framework functions, which are not integrated in the main package.

Name Description
body Read and parse the request body.
cookie Read and parse request cookies and serialize cookies for the response.
decorators Create request handlers with class-, method- & parameter-decorators.
prometheus Collect and serve metrics for prometheus.
query Read and parse the query string of the request url.
rate-limit Rate limit incoming requests.
rate-limit-redis Redis adapter for the rate-limit plugin.
static Serve static files from a directory.
swagger Serve generated docs from URL or based on a JSON file.

Benchmarks

  • CPUs: 24
  • RAM: 63.9GB
  • Node: v18.16.0
  • Date: Wed Sep 13 2023 15:11:58 GMT+0200 (Mitteleuropรคische Sommerzeit)
  • Method: autocannon -c 100 -d 40 -p 10 localhost:3000 (two rounds; one to warm-up, one to measure)
Package Requests/s Latency (ms) Throughput/MB
http 61062 15.87 10.89
fastify 59679 16.26 10.70
koa 45763 21.35 8.16
routup 43881 22.29 8.87
hapi 41374 23.67 7.38
express 13376 74.18 2.39

Benchmarks were generated using autocannon. To recreate the results, this can be done using the benchmarks' repository.

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.