ExpressApp
An interface mapped to an Express app object, providing route configuration and other methods.
Functions
Register a DELETE route handler at path. The handler must be a function and will receive two parameters (ExpressRequest and ExpressResponse, respectively).
Register a GET route handler at path. The handler must be a function and will receive two parameters (ExpressRequest and ExpressResponse, respectively).
Register a HEAD route handler at path. The handler must be a function and will receive two parameters (ExpressRequest and ExpressResponse, respectively).
Register an OPTIONS route handler at path. The handler must be a function and will receive two parameters (ExpressRequest and ExpressResponse, respectively).
Register a POST route handler at path. The handler must be a function and will receive two parameters (ExpressRequest and ExpressResponse, respectively).
Register a PUT route handler at path. The handler must be a function and will receive two parameters (ExpressRequest and ExpressResponse, respectively).
Register a global middleware handler. The handler must be a function and will receive an ExpressRequest, an ExpressResponse, and a callable next
value, which can be used to call the next handler in the pipeline.
Register a middleware handler at path. The handler must be a function and will receive an ExpressRequest, an ExpressResponse, and a callable next
value, which can be used to call the next handler in the pipeline.