Skip to content

Files

Latest commit

8429ea6 · Jun 23, 2021

History

History
55 lines (40 loc) · 930 Bytes

README.md

File metadata and controls

55 lines (40 loc) · 930 Bytes

@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