3.0.0 • Published 7 years ago

bay-compose v3.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

bay-compose

Middleware composition utility for Bay.

NPM version

Like koa-compose@2, but:

  • returns the final value.
  • supports async function.
  • next is a yieldable function, e.g. yield * next equals yield * next().
npm i bay-compose
const compose = require('bay-compose')

compose([
  function * (next) {
    yield next
  },
  function * (next) {
    yield next()
  },
  function * (next) {
    yield * next
  },
  function * (next) {
    yield * next()
  },
  async function (next) {
    await next()
  },
  function (next) {
    next().then(doSomeJob)
  }
])(context)
3.0.0

7 years ago

2.3.1

10 years ago