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-12
stories 16

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

NGTCP2 UPGRADED, STREAM PERFORMANCE SURGES 27 PERCENT

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

Node core shipped a significant dependency bump and a performance optimization that measurably speeds up WHATWG stream reads across the stack.

The ngtcp2 HTTP/3 transport library jumped to 1.24.0 [1], bringing upstream security and stability improvements directly into Node's dependency chain. Meanwhile, the streams team landed a targeted optimization [2] that skips redundant size algorithm calls on default WHATWG streams, delivering up to 27.5 percent faster buffered reads and 16.6 percent gains on async iteration - meaningful gains for any application moving data at volume. On cleanup, the HTTP module shed unused code [4] when the IncomingMessage._read method got refactored to drop a dead parameter, keeping core lean. The doc-kit team fixed an AST mutation bug [3] that was silently corrupting legacy JSON structures during processing, and shipped 1.4.2 to npm [5] with the patch baked in. Nightly builds are rolling forward [8], and work continues on typo fixes and test documentation improvements [6] [7] across the codebase.

Action items

References

  1. [1] deps: update ngtcp2 to 1.24.0 ↗ nodejs/node
  2. [2] stream: speed up reads and iteration over default WHATWG streams ↗ nodejs/node
  3. [3] fix(legacy-json): don't mutate the ast ↗ nodejs/doc-kit
  4. [4] http: remove unused n arg from IncomingMessage._read ↗ nodejs/node
  5. [5] Version Packages ↗ nodejs/doc-kit
  6. [6] src: fix some typo errors and rename some variables ↗ nodejs/node
  7. [7] doc: add scope overview tables for TestsStream events ↗ nodejs/node
  8. [8] snap: (auto) updated to 27.0.0-nightly2026071214166a59cc ↗ nodejs/snap

Quick answers

What shipped in Node.js on July 12, 2026?
Node core shipped a significant dependency bump and a performance optimization that measurably speeds up WHATWG stream reads across the stack. In total, 8 commits and 8 pull requests landed.
Who contributed to Node.js on July 12, 2026?
8 developers shipped this update, including GitHub Actions, nodejs-github-bot, Efe Karasakal, Archkon, mcollina, MoLow, avivkeller, and github-actions.
What were the notable Node.js updates?
deps: update ngtcp2 to 1.24.0, stream: speed up reads and iteration over default WHATWG streams, and fix(legacy-json): don't mutate the ast.