npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@marianmeres/midware

v1.3.4

Published

A minimalistic, type-safe middleware framework for executing functions in series.

Readme

@marianmeres/midware

A minimalistic, type-safe middleware framework for executing functions in series.

JSR NPM License: MIT

Features

  • Type-safe: Full TypeScript support with generic middleware arguments
  • Timeout protection: Per-middleware and total execution timeouts
  • Priority sorting: Optional execution order based on middleware priority
  • Duplicate detection: Optional prevention of duplicate middleware registration
  • Early termination: Any middleware can stop the chain by returning a non-undefined value
  • Zero dependencies: Lightweight and self-contained

Installation

# Deno
deno add jsr:@marianmeres/midware
# Node.js
npx jsr add @marianmeres/midware

Quick Start

import { Midware } from "@marianmeres/midware";

// Create a middleware manager with typed arguments
const app = new Midware<[{ user?: string; authorized?: boolean }]>();

// Register middlewares
app.use((ctx) => {
    ctx.user = "john";
});

app.use((ctx) => {
    ctx.authorized = true;
});

// Execute all middlewares in series
const ctx = {};
await app.execute([ctx]);

console.log(ctx); // { user: "john", authorized: true }

API

Midware<T>

The main middleware manager class. T is a tuple type representing the arguments passed to all middlewares.

| Method | Description | |--------|-------------| | use(midware, timeout?) | Add middleware to the end of the stack | | unshift(midware, timeout?) | Add middleware to the beginning of the stack | | remove(midware) | Remove a specific middleware (returns true if found) | | clear() | Remove all middlewares | | execute(args, timeout?) | Execute all middlewares in series |

Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | preExecuteSortEnabled | boolean | false | Sort middlewares by __midwarePreExecuteSortOrder before execution | | duplicatesCheckEnabled | boolean | false | Throw error if the same middleware is added twice |

Utilities

  • withTimeout(fn, timeout, errMessage?) - Wraps a function with timeout protection
  • sleep(timeout, ref?) - Promise-based delay utility
  • TimeoutError - Custom error class for timeouts

For complete API documentation with detailed parameters, return types, and examples, see API.md.

Examples

Early Termination

const app = new Midware<[{ authorized: boolean }]>();

app.use((ctx) => {
    if (!ctx.authorized) {
        return { error: "Forbidden" }; // Stops execution chain
    }
});

app.use((ctx) => {
    console.log("This won't run if unauthorized");
});

const result = await app.execute([{ authorized: false }]);
console.log(result); // { error: "Forbidden" }

Timeout Protection

const app = new Midware<[any]>();

// Per-middleware timeout (1 second)
app.use(async (ctx) => {
    await someSlowOperation();
}, 1000);

// Total execution timeout (5 seconds)
try {
    await app.execute([{}], 5000);
} catch (e) {
    if (e instanceof TimeoutError) {
        console.log("Operation timed out");
    }
}

Priority Sorting

const app = new Midware<[string[]]>([], { preExecuteSortEnabled: true });

const logger: MidwareUseFn<[string[]]> = (log) => { log.push("logger"); };
logger.__midwarePreExecuteSortOrder = 10;

const auth: MidwareUseFn<[string[]]> = (log) => { log.push("auth"); };
auth.__midwarePreExecuteSortOrder = 1;

app.use(logger); // Added first
app.use(auth);   // Added second, but runs first due to lower sort order

const log: string[] = [];
await app.execute([log]);
console.log(log); // ["auth", "logger"]

Duplicate Prevention

const app = new Midware<[any]>([], { duplicatesCheckEnabled: true });

const middleware = (ctx) => { /* ... */ };

app.use(middleware);
app.use(middleware); // Throws Error: "Midware already exist..."

// Allow duplicates for specific middleware
const duplicable = (ctx) => { /* ... */ };
duplicable.__midwareDuplicable = true;

app.use(duplicable);
app.use(duplicable); // OK

Dynamic Middleware Management

const app = new Midware<[any]>();

const tempMiddleware = (ctx) => { ctx.temp = true; };

app.use(tempMiddleware);
// ... later
app.remove(tempMiddleware); // Returns true

// Or clear everything
app.clear();

License

MIT