You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
375 B
14 lines
375 B
'use strict'
|
|
|
|
class Middleware {
|
|
/**
|
|
* Return one or more options definitions to collect command-line input
|
|
* @returns {OptionDefinition|OptionDefinition[]}
|
|
*/
|
|
optionDefinitions () {}
|
|
|
|
/**
|
|
* Return one of more middleware functions with three args (req, res and next). Can be created by express, Koa or hand-rolled.
|
|
*/
|
|
middleware (localWebServer) {}
|
|
}
|