RepoJournal
Node.js

@nodejs

The Node.js runtime - every backend team's CVE source of truth

Keep up with Node.js in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

One email a day. Unsubscribe in one click.

Pick a date

Topics: JavaScript Full archive →

The Wire · Showcase

NODE STREAM PIPELINE GETS MAJOR SPEED BOOST

By RepoJournal · Filed · About Node.js

1 person shipped this

Node's stream pipelines just got a synchronous fast path that bypasses async normalization entirely, cutting latency for simple sync-to-sync flows.

The Node core team shipped a stack of stream performance improvements overnight that fundamentally change how data moves through pipelines. The headline win: `pipeTo()` now detects when you're piping from a sync iterable through a writer that supports `writeSync()` and takes a direct path instead of routing through async normalization [1]. This matters because sync-to-sync pipelines are common in worker threads and file I/O, and the old path always paid an async tax. Supporting this fast path required fixing two gnarly edge cases: `merge()` was incorrectly treating ArrayBuffer and ArrayBufferView objects as options instead of valid stream sources [2], and `from()` was batching all sync iterables into unbounded chunks instead of flushing at sensible boundaries to control memory and latency [3]. The team also optimized broadcast buffer trimming by caching minimum cursor counts, avoiding repeated scans across shared consumers [5]. On the org side, inactive triagers got pruned from the official list [4]. Expect to see these improvements surface in the next LTS cycle.

One email a day. Unsubscribe in one click.

Action items

References

  1. [1] stream: add sync iterable fast path to pipeTo ↗ nodejs/node
  2. [2] stream: fix merge handling for object-like sources nodejs/node
  3. [3] stream: limit iter from sync iterable batches ↗ nodejs/node
  4. [4] doc: remove inactive members from Triagers list nodejs/node
  5. [5] stream: cache minimum cursor count in broadcast nodejs/node

Quick answers

What shipped in Node.js on May 18, 2026?
Node's stream pipelines just got a synchronous fast path that bypasses async normalization entirely, cutting latency for simple sync-to-sync flows. In total, 12 commits, 9 pull requests, and 1 releases landed.
Who contributed to Node.js on May 18, 2026?
1 developer shipped this update, including trivikr.
What were the notable Node.js updates?
stream: add sync iterable fast path to pipeTo, stream: fix merge handling for object-like sources, and stream: limit iter from sync iterable batches.

More from @nodejs

Daily updates, in your inbox

Follow Node.js

Keep up with Node.js in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

One email a day. Unsubscribe in one click. Read a past issue →

Elsewhere on the wire

Want every project, not just this one?