3.0.1 • Published 10 years ago

apeman-app-flush v3.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

apeman-app-flush

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app to handle flush messages.

Installation

$ npm install apeman-app-flush --save

Usage

  1. Define an app within Apemanfile.js
  2. Call the app via apeman app command.

Apemanfile.js

/** This is an example Apemanfile to use apeman-app-flush */

'use strict'

const co = require('co')

module.exports = {
  $pkg: { /* ... */ },
  $apps: {
    'my-app-01': {
      '/': [
        // flush middleware needs session store.
        require('apeman-app-session')({
          /* ... */
        }),
        // Add flush
        require('apeman-app-flush')({}),
        co.wrap(function * (ctx, next) {
          // Push flush message.
          ctx.flush('Say hey!')
          /* ... */
          yield next()
        }),
        (ctx) => {
          // Shift flush message.
          let msg = ctx.flush()
          /* ... */
        }
      ]
    }
  }
}

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppFlush(options) -> function

apeman app to handle flush messages.

Args
NameTypeDefaultDescription
optionsobjectOptional settings.

License

This software is released under the MIT License.

Links

3.0.1

10 years ago

2.0.0

10 years ago

1.0.0

10 years ago