
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Flexible event emitter for Node.js supporting RegExp-based event subscription and global broadcast listeners
Flexible & dead simple event emitter for Node.js supporting RegExp-based event subscription and global broadcast listeners.
$ npm install --save flexee # npm
$ yarn add flexee # yarn
The only thing left to do after installation via NPM or yarn is to require the module:
var Flexee = require('flexee');
Afterwards you can either create an instance or extend Flexee with your own class and use its methods as described below.
Listeners (also referred to as callbacks) must be of type Function which will always receive an instance of type Event as their first parameter. If the event was emitted with further parameters these will be passed to the listener as separate arguments.
The passed Event instance offers access to the event name as well as its context and, in addition, offers a cancel method to stop further processing of an event.
Flexee offers a total of three methods to subscribe to events: on, once and limit.
// register an event listener
emitter.on({String|RegExp|Object[]} identifier, {Function} callback, {Boolean=} prepend, {Number=} limit);
// register a once only event listener
emitter.once({String|RegExp|Object[]} identifier, {Function} callback, {Boolean=} prepend);
// register an event listener that gets called a limited number of times
emitter.limit({String|RegExp|Object[]} identifier, {Number} limit, {Function} callback);
identifier can either be a specific event name as String, a pattern of event names as RegExp or an array of both which gives you almost endless flexibitlity.
The only method to know is the off method:
emitter.off({String|RegExp|Object[]} identifier, {Function=} callback);
identifier can, again, either be a specific event name as String, a pattern of event names as RegExp or an array of both. Just keep in mind that unsubscribing from a specific event name will never unsubscribe a RegExp-listener and vice versa.
Any instance of Flexee has its own emit method:
emitter.emit({String} name, ...details);
If you need to retrieve any existing listener for a specific event simply use
emitter.listener({String} name);
Calling listener will always return an array which may be empty.
Any method beside listener returns the current instance to offer a chainable interface.
It is possible to not only subscribe to events emitted by a known instance of Flexee but also to subscribe to events emitted by any existing and/or future instance. This behaviour allows, e.g., to subscribe to events globally for logging purposes and the likes.
var Flexee = require('flexee');
// register a broadcast listener
Flexee.on({String|RegExp|Object[]} identifier, {Function} callback, {Boolean=} prepend, {Number=} limit);
// register a once only broadcast listener
Flexee.once({String|RegExp|Object[]} identifier, {Function} callback, {Boolean=} prepend);
// register a broadcast listener that gets called a limited number of times
Flexee.limit({String|RegExp|Object[]} identifier, {Number} limit, {Function} callback);
// unregsiter a broadcast listener
Flexee.off({String|RegExp|Object[]} identifier, {Function=} callback);
// retrieve boradcast listeners for a specific event
Flexee.listener({String} name);
FAQs
Flexible event emitter for Node.js supporting RegExp-based event subscription and global broadcast listeners
We found that flexee demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.