
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
array-from-async
Advanced tools
An implementation for Array.fromAsync, which dumps an async iterator into an array.
Array.fromAsync polyfillTC39 is considering a new standard Array.fromAsync convenience
method. This is a standalone polyfill for that.
This polyfill requires ES 2018 (which must include support for async iterators).
In Node:
npm install array-from-async
…then:
import fromAsync from 'array-from-async';
In web browsers or Deno:
import fromAsync from '//unpkg.com/array-from-async';
This is a standalone implementation of the proposed Array.fromAsync
function. Unlike typical polyfills/shims, it does not mutate the global Array
constructor; instead, it exports an equivalent function.
Similarly to Array.from,
fromAsync would be a static method
of the Array built-in class, with one required argument
and two optional arguments: (items, mapfn, thisArg).
But instead of converting an iterable to an array, it converts an async iterable to a promise that will resolve to an array.
async function * f () {
for (let i = 0; i < 4; i++)
yield i * 2;
}
// Resolves to `[0, 2, 4, 6]`.
await fromAsync(f());
For more information, see the Array.fromAsync explainer.
FAQs
An implementation for Array.fromAsync, which dumps an async iterator into an array.
The npm package array-from-async receives a total of 1,611 weekly downloads. As such, array-from-async popularity was classified as popular.
We found that array-from-async demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.