2.1.1 • Published 9 years ago
apeman-app-combine v2.1.1
apeman-app-combine
apeman app to combine multiple handlers into one.
Installation
$ npm install apeman-app-combine --saveUsage
- Define an app within Apemanfile.js
- Call the app via apeman app command.
Apemanfile.js
/** This is an example Apemanfile to use apeman-app-combine */
'use strict'
module.exports = {
$pkg: { /* ... */},
$apps: {
// Define your own app.
'my-app-01': {
'/': [
// Combine multiple handlers
require('apeman-app-combine')([
(req, res, next) => {
/* ... */
next()
},
(req, res, next) => {
/* ... */
next()
},
(req, res, next) => {
/* ... */
res.json({ /* ... */})
}
], {
// Options
})
]
}
}
}Then,
$ apeman app my-app-01 -p 3000Signature
apemanAppCombine(handlers, options) -> function
apeman app to combine multiple handlers into one.
Args
| Name | Type | Default | Description |
|---|---|---|---|
| handlers | function | Request handlers to combine. | |
| options | object | Optional settings. |
License
This software is released under the MIT License.