129 wires and counting

$ follow Node.js

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

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-07-08
stories 29

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

HTTP2 CUTS OVERHEAD 30 PERCENT ACROSS HOT PATH

By RepoJournal · Filed · About Node.js · Composed from the cited sources · methodology

Node core just shipped a series of performance wins that strip per-request allocations from HTTP2, skipping unnecessary trailers round trips and eliminating object clones on every respond() call.

Three surgical http2 optimizations landed overnight that compound into meaningful throughput gains [1] [2] [3]. The first kills redundant EventEmitter tracking on stream listeners by overriding methods directly instead of subscribing to newListener events. The second eliminates a wasted DATA frame and C++ callback on every response that never registers trailers, which is most of them. The third removes object cloning from respond() and consolidates header lookups into a single pass. Together these cut hot-path allocations without touching the API surface. On the test_runner front, you're now getting entryFile reported in TestStream events [4], closing a gap for test harness integrations that need to trace which file kicked off a given test. A reliability fix landed that prevents worker stack size tests from flaking under tier-up churn [5]. On the website desk, the Undici docs are back to the stock Node logo [6] [7].

Quick answers

What shipped in Node.js on July 8, 2026?
Node core just shipped a series of performance wins that strip per-request allocations from HTTP2, skipping unnecessary trailers round trips and eliminating object clones on every respond() call. In total, 20 commits and 9 pull requests landed.
Who contributed to Node.js on July 8, 2026?
2 developers shipped this update, including MoLow and bmuenzenmeyer.
What were the notable Node.js updates?
http2: reduce per-request allocations, http2: skip trailers round trip for compat responses, and http2: avoid copying the options in respond().