@macchiatojs/middleware
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

@macchiatojs/middleware

The modern Express-Style middleware composition.

Installation

# npm
$ npm install @macchiatojs/middleware
# yarn
$ yarn add @macchiatojs/middleware

Usage

import Middleware from "@macchiatojs/middleware";

const middleware = new Middleware();

middleware.push((req, res, next) => {
  req.arr.push(1);
  return next().then(() => {
    req.arr.push(6);
  });
});

middleware.push(async (req, res, next) => {
  req.arr.push(2);
  await next();
  req.arr.push(5);
});

middleware.push((req, res, next) => {
  req.arr.push(3);
  next();
  req.arr.push(4);
});

const req = { arr: [] };
const res = {};
await middleware.compose(req, res);
console.log(req.arr.toString() === "1,2,3,4,5,6");
// true

Support

If you have any problem or suggestion please open an issue.

License


MIT © Imed Jaberi

Package Sidebar

Install

npm i @macchiatojs/middleware

Weekly Downloads

1

Version

0.2.0

License

MIT

Unpacked Size

6.27 kB

Total Files

6

Last publish

Collaborators

  • 3imed-jaberi