Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Releases: fullstackers/bus.io-receiver

API Enhancements

16 Aug 01:53
Compare
Choose a tag to compare

Updated the API to behave more like express using switched.

var bus = require('bus.io');
bus.on('some*', function (msg, next) {
  next();
});
bus.on(/event/, function (msg, next) {
  next(new Error('Some Error'));
});
bus.on(function (err, msg, next) {
  next();
});
bus.on('some event', function (msg, next) {
  msg.deliver();
});

Dependency updates

26 Jul 22:36
Compare
Choose a tag to compare

Updated dependencies

Updated dependencies.

29 Jun 18:16
Compare
Choose a tag to compare

Dependencies were updated.