onion-stack

Middleware framework based on Async Generator of ECMAScript 2018, inspired by Koa 2


Keywords
middleware, async, generator, ecmascript, koa, async-generator
License
LGPL-3.0
Install
npm install onion-stack@0.2.0

Documentation

OnionStack

Middleware framework based on Async Generator & TypeScript, inspired by Koa 2.

NPM Dependency CI & CD

NPM

Example

import OnionStack from 'onion-stack';

const list = [];

const stack = new OnionStack(
    function* () {
        list.push(1);

        yield;

        list.push(2);

        yield;

        list.push(3);
    },
    async function* () {
        await delay(0.1);

        list.push(4);

        yield;

        list.push(5);
    },
    function () {
        list.push(6);
    }
);

stack.execute().then(() => console.log(list)); //  [1, 4, 6, 5, 2]

More cases