Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
A tiny library to wait for the results of multiple callbacks. For node and the browser.
This will install the listen
module in your current project and add it to the
dependencies
:
npm install listen --save
var listen = require('listen');
var listener = listen();
var callbackA = listener();
var callbackB = listener();
/*
* Do async stuff with callbacks.
*
* Callbacks follow the Node.js convention. They expect an error or null as
* the first argument and an optional value as the second:
*
* Fail: callback(new Error('ouch!'));
* Return: callback(null, 'some return value');
*/
listener.then(function (err, values) {
/*
* err - 1) null if no callback received an error
* 2) the error of the callback that received an error
* 3) an error with name ErrorList wrapping multiple errors
*
* values - The non-undefined return values from all callbacks in order of
* callback creation, also exposing names callbacks (see API)
*/
});
Start with var listen = require('listen')
, then use the listen
function to
create listeners. Use the listeners to create callbacks.
listen([values])
: Creates and returns a new listener function. If values
are given, it must be an array with initial values.listener([name][, func][, timeout])
: Creates a new callback associated with
the listener. Throws if called after then
. All arguments are optional and
can be combined.
name
exposes the return value of the callback on the values object
under that name.func
gets invoked with (err, value)
when the callback is invoked.timeout
calls the callback with a TimeoutError
after the timeout.listener.then(func)
: Invokes the given function once all callbacks where
invoked. If none of the callbacks had errors, the first argument is null
,
otherwise it's an Error
. The second argument is the values array in order
of callback creation. Can only be called once.listener.push(value)
: Pushes a value to the internal values array. Throws
if called after then
.listener.err(error)
: Adds an error to the internal error list. Throws if
called after then
.The listen
has 100% coverage and runs in these environments:
MIT
1.0.1
FAQs
Wait for the results of multiple callbacks
The npm package listen receives a total of 1,651 weekly downloads. As such, listen popularity was classified as popular.
We found that listen 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.