Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
async-node-events
Advanced tools
An EventEmitter replacement that allows both asynchronous and synchronous emissions and handlers. This is entirely based off of and almost entirely written by @dfellis in his excellent async-cancelable-events module. Even this README is primarily written by @dfellis. Recent updates are from Digital Bazaar.
This version is primarily targeted at using Promises and async/await with
emit
and listeners. Namely, the asynchronous emit
will return a Promise
which can be awaited upon. Listeners are run in series and their result is
awaited upon. Throwing an error from a listener that executed asynchronously
will terminate the listener chain (subsequent listeners will not receive the
emitted event and the emit
Promise will be rejected. Events may also be
canceled by a listener resolving to or returning false
. This will stop
further event emission to other listeners and return false
rather than
undefined
, but not raise an error.
The synchronous emitSync
variant acts like the asynchronous emit
but
only allows synchronous listeners.
The listener manipulation methods (on
, off
, etc) are synchronous and
use emitSync
to emit newListener
, removeListener
, and
maxListenersPassed
. Listeners for these events must be synchronous.
npm install async-node-events
var EventEmitter = require('async-node-events').EventEmitter;
var util = require('util');
(async () => {
const myEmitter = new EventEmitter();
myEmitter.on('test', async (...) => {
...
});
await myEmitter.emit('test', ...);
})();
function MyEmittingObject() {
EventEmitter.call(this);
...
}
util.inherits(MyEmittingObject, EventEmitter);
The API is intended to be a mostly-drop-in replacement for Node.js'
EventEmitter
object, except with support for asynchronous listeners.
The primary differences between the EventEmitter
and async-node-events
are:
maxListenersPassed
event with the event name and listener count as
arguments. The warning the official EventEmitter
prints is simply a
listener for async-node-events
, and can be disabled by running
this.removeAllListeners('maxListenersPassed')
just after the
EventEmitter.call(this)
listed above.foo.on('bar', func1).on('baz', func2)
is valid.emit
and emitSync
return undefined
if the even was emitted to all
listeners and false
when a listener caused cancellation. This differs from
returning an indication if there were listeners.Copyright (C) 2012-2013 by David Ellis
Copyright (C) 2014-2019 Digital Bazaar
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2.0.0 - 2019-11-08
EventEmitter
is exported from module.
const {EventEmitter} = require('async-node-events');
import {EventEmitter} from 'async-node-events';
emit()
async function and resolve to true
/false
if
listeners were called rather than returning this
.on
, off
, etc) will
all be called in a sync manner, and must not return a Promise.emitSync
is now like emit
but only handles synchronous
listeners.emit
and emitSync
return false
when cancelled and
true
if not cancelled. This differs from Node.js API that indicates if
there were listeners. Use listenerCount
to check for listeners.off()
as alias for removeListener.listenerCount()
.onSync()
/ onceSync()
/ addListenerSync()
onAsync()
/ onceAsync()
/ addListenerAsync()
FAQs
Asynchronous EventEmitter
The npm package async-node-events receives a total of 48 weekly downloads. As such, async-node-events popularity was classified as not popular.
We found that async-node-events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.