anyflow
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

anyflow

npm

npm jsdelivr

NOT only http server need middleware !!

HOW-TO-USE

const { App } = require('anyflow');
const app = new App();
// use function as middleware
app.use(async (context, next) => {
    // you can get or set data from context.data
    return await next(); // call next middleware
});
// or use middleware
app.use({
    invoke: async (context, next) => {
        return await next();
    }
});
// or use middleware factory
app.useFactory({
    get: () => ({
        // factory allow you make a new middleware for each times.
        invoke: async (context, next) => {
            return await next();
        }
    })
});
// then run middleware chain.
app.run();

reference

  • Asp.Net Core middleware

/anyflow/

    Package Sidebar

    Install

    npm i anyflow

    Weekly Downloads

    4

    Version

    0.3.0

    License

    MIT

    Unpacked Size

    18.3 kB

    Total Files

    6

    Last publish

    Collaborators

    • cologler