koalesce

0.3.0 • Public • Published

Koalesce (v0.1.14)

The koalesce module is a router and middleware manager for the koa middleware framework. It extends koa by allowing the addition of middleware on a per-controller or per-route basis. One of the concepts driving the design of koalesce is an attempt to keep each route self-contained: all of the information specific for a route is kept in a single place on a single controller.

Of course, this means there's not a routes file. For convenience: routes lists are still available by running 'grunt routes', or by using the inspector controller included with the starter kit. (Simply point your browser at http://yourApp:port/index.html?/inspector)

Features

  • loads controllers automatically and uses koa-router for route matching
  • controller-level middleware: middleware added to a controller that is run on all routes for that controller
  • route-level middleware: middleware that can be added to an individual route (makes for convenient reuse)
  • self-documenting routes: information about routes can be viewed using the inspector controller included. (Routes can also be listed using 'grunt routes'.)
  • route aware middleware: the route is attached as this.route for all 'routeAware' middleware, meaning middleware can know specifics of the route before the actual route handler is called.

The koalesce-starter project is a good starting point for using koalesce.

Configuration Options

  • basePath (string) - the working directory of the app
  • controllerPaths (array(string)) - a list of directories to load controllers from (does not recurse into subdirectories)
  • stores (object) - configuration information for various data stores
  • endpoints (object) -
    • port (number) - the port number of the endpoint
    • type (string) - 'http' or 'https'
    • privateKeyFile (string) - the filename of the private key file for an 'https' endpoint
    • certificateFile (string) - the filename of the certificate file for an 'https' endpoint

Package Sidebar

Install

npm i koalesce

Weekly Downloads

4

Version

0.3.0

License

ISC

Last publish

Collaborators

  • madams5