volante-express

7.2.0 • Public • Published

Volante Spoke for Express.js

Neatly encapsulates an express.js server for use in a Volante wheel.

Features

  • allows other Volante Spokes to register their Express middleware
  • Express logging emitted as Volante events

Usage

npm install volante-express

Volante Spokes are automatically loaded and instanced if they are installed locally and hub.attachAll() is called.

Props

Options can be changed using the VolanteExpress.update event with an object:

hub.emit('VolanteExpress.update', {
  autoStart: true,                 // automatically start
  bind: '127.0.0.1',               // bind address
  port: 3000,                      // server port
  https: false,                    // enable https mode
  cert: null,                      // tls certificate
  key: null,                       // tls private key
  logging: true,                   // emit express log as Volante events
  cors: []                         // CORS entries, adding to array enables cors
  middleware: [                    // express middleware
    // array of express middleware, e.g.:
    require('compression')()
  ]
});

or specify any of the above in a config.json file as fields under a VolanteExpress object and pass it to the hub: hub.loadConfig('config.json').

Events

Handled

  • VolanteExpress.use - .use() call for middleware (enables self-registering volante middleware)
    Object // middleware object used for .use() call
  • VolanteExpress.start - start the server (call this LAST, after all middleware has been added)
  • VolanteExpress.stop - stop the server

Emitted

In addition to native Volante log events, this modules also emits:

  • VolanteExpress.router(router) - preferred way to register routes, call the supplied router param to get a router instance
    events: {
      'VolanteExpress.router'(router) {
        let r = router();
        r.get('/').then((req, res) => {});
      }
    }
  • VolanteExpress.app(app) - preferred way for other spokes to register their middleware, example:
    events: {
      'VolanteExpress.app'(app) {
        app.use(this.localRouter);
      }
    }
  • VolanteExpress.listening({ bind: String, port: Number})

Logs

If logging is enabled, Express.js HTTP requests are logged to volante log events with the following content structure:

{
  method: String,
  src: String,
  url: String,
  status: Number,
  ms: Number
}

License

ISC

Readme

Keywords

Package Sidebar

Install

npm i volante-express

Weekly Downloads

5

Version

7.2.0

License

ISC

Unpacked Size

13.1 kB

Total Files

8

Last publish

Collaborators

  • msmiley