1.0.4 • Published 7 years ago

middleware-emitter v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Middleware Emitter

Use middleware to chain your event logic, compatible with express middleware (and possibly others). This allows you to not only break up logic for when an event is fired, but let's you share middleware between frameworks if necessary.

The middleware-emitter project also brings multiple event triggering and capturing.

req The req is the 'request', the req.ctx is the context on the request, it's used to build up the state throughout the middleware.

res The res is the 'response', the res.ctx is the context on the response, it's used to build up the output to be used later on.

You can think of the two like this - req = internal (chain only, imagine storing all data for calculation), res = external, when you are at the end of the chain - it's this object that you will want to use for display.

Usage

Assuming you have broken up your middleware functions:

const emitter = require('middleware-emitter');
const app = require('./middleware/app');

emitter.on('hello', app.load, app.hello, app.output, app.handleError)
  .emit('hello');

Installation

$ npm install middleware-emitter

Features

  • Create an event middleware chain.
  • Inject middleware functions or objects.
  • Build up the res.ctx chain for output.
  • Build up the req.ctx chain for internal chain state.
  • Listen to multiple events on the same chain.
  • Emit multiple events at once.
  • Simple, fast, light-weight.
  • Written in ES6+ for node.js 6+.
  • Test driven.

Options

MiddlewareEmitter extends the base EventEmitter class, therefore all standard options apply.

Examples

A simple standalone example:

const emitter = require('middleware-emitter');

emitter.on('hello',

(req, res, next) => {
  res.ctx.hello = 'world';
  next();
},

(req, res) => {
  console.log(res.ctx); // { hello: 'world' }
})

.emit('hello');

Listen / emit multiple events:

emitter.on([ 'hello', 'other', 'test' ],

(req, res, next) => {
  console.log(req.event.name);
})

.emit([ 'hello', 'other', 'test' ]);

// hello
// other
// test

Inject data into the req (request) context:

emitter.on('inject',

{ hello: 'world' },

(req, res, next) => {
  console.log(req.ctx);
})

.emit('inject', { some: 'data' });

// { some: 'data', hello: 'world' }

If you add a function with the 4th parameter of 'err', you can gracefully handle errors:

emitter.on('ohno', (req, res, next) => {
  next(new Error('Oh no, something went wrong...'));
},

(req, res, next, err) => {
  console.error(err);
  next();
},

(req, res) => {
  console.log('But we continued anyway.');
})

.emit('ohno');

// Error: Oh no, something went wrong... + stack
// But we continued anyway.

Error handling can be done at any point within the chain, it will automatically hoist the next error handler out for use if an error is passed into a 'next'.

Multiple error handlers can be used, the next error handler in the chain will be used, if there is no next handler, the previous one will be used. If none are found, the error is thrown.

Check out the test folder for more!

Tests

From the package

$ npm test

License

MIT