Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.
FAQs
Asynchronous EventEmitter
The npm package async-node-events receives a total of 77 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.