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-05-03
stories 13

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

NODE INSPECTOR BUG CRUSHES ABSOLUTE URLS. LLHTTP BUMPED. UNDICI TIGHTENS HTTP/2 PERFORMANCE

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

A network inspector bug that mangled absolute URLs in HTTP requests is now fixed, while llhttp gets a maintenance bump and Undici optimizes its HTTP/2 client with authority caching.

The inspector was doubling up on URLs when clients passed absolute paths instead of relative ones [1], creating malformed request logs like `http://hosthttp://host/path` — a trap for anyone debugging network traffic in production. The fix handles absolute URLs directly while preserving backward compatibility for relative paths [3]. Separately, llhttp shipped a patch update to 9.4.1 [2], landing upstream in Node with the usual automated dependency sync. Over in Undici, two separate performance wins landed back-to-back: HTTP/2 authority values are now cached to avoid redundant string construction [4], and duplicate request stream setup logic collapsed into a single path [5]. The Node-API CTS gained test coverage for SharedArrayBuffer [6], bridging a gap between the test suite and the compatibility standard. Nothing here demands an emergency patch, but the inspector fix closes a real debugging footgun.

Quick answers

What shipped in Node.js on May 3, 2026?
A network inspector bug that mangled absolute URLs in HTTP requests is now fixed, while llhttp gets a maintenance bump and Undici optimizes its HTTP/2 client with authority caching. In total, 7 commits and 6 pull requests landed.
Who contributed to Node.js on May 3, 2026?
4 developers shipped this update, including GrinZero, nodejs-github-bot, trivikr, and bavulapati.
What were the notable Node.js updates?
inspector: fix absolute URLs in network http, deps: update llhttp to 9.4.1, and inspector: fix absolute URLs in network http.