RepoJournal
Node.js

@nodejs

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

Pick a date

Topics: JavaScript Full archive →

The Wire · Showcase

NODE ADDS WORKER THREAD SOCKET TRANSFER AND LIVE TEST LOGGING

By RepoJournal · Filed · About Node.js

Node core shipped two significant runtime features overnight: TCP servers and sockets can now move across worker threads, and the test runner gained unbuffered live logging that executes in real time.

The worker thread socket transfer [1] lands on Unix platforms and solves a long-standing coordination problem for multithreaded applications. Pass a listening server or accepted socket through postMessage() and the receiving thread takes ownership without reimplementing the connection layer. Windows support blocked for now, but this unblocks serious architectural patterns for network-heavy services.

The test runner's new context.log() method [2] pairs with a matching test:log event that fires immediately as tests execute, not in buffered declaration order. This matters for reporters that want to render test trees live and for process-isolated tests where buffering creates attribution gaps. It's a targeted addition that solves the real problem of correlating logs to execution order.

Nix tooling got sharper [3] with new workflows that verify derivations build across platforms when nixpkgs pins change. The workflow comments diffs directly on PRs so you catch breaks early instead of discovering them after merge. This prevents the silent failures that plague dependency bumps in development tooling.

Snap packaging moved to official Node.js binaries [4] on supported architectures instead of rebuilding from source. amd64, arm64, and s390x now package upstream artifacts with embedded SHA-256 checksums, and the runtime handles Node 25's new libatomic.so.1 dependency inside the snap sandbox. armhf stays on source builds while armv7l gets the official package on Node 22+.

Action items

References

  1. [1] net: make TCP Server and Socket transferable across worker threads ↗ nodejs/node
  2. [2] test_runner: add `context.log()` and `test:log` event ↗ nodejs/node
  3. [3] tools: add workflow to compare Nix changes ↗ nodejs/node
  4. [4] fix: package official Node.js runtime artifacts ↗ nodejs/snap

Quick answers

What shipped in Node.js on July 13, 2026?
Node core shipped two significant runtime features overnight: TCP servers and sockets can now move across worker threads, and the test runner gained unbuffered live logging that executes in real time. In total, 17 commits and 14 pull requests landed.
Who contributed to Node.js on July 13, 2026?
5 developers shipped this update, including Archkon, aduh95, mcollina, MoLow, and rvagg.
What were the notable Node.js updates?
net: make TCP Server and Socket transferable across worker threads, test_runner: add `context.log()` and `test:log` event, and tools: add workflow to compare Nix changes.

More from @nodejs

Daily updates, in your inbox

Follow Node.js

The Node.js runtime — every backend team's CVE source of truth We'll email you a link to confirm first.

Free. Confirm via email. Unsubscribe in one click.

— or follow the whole beat:

Elsewhere on the wire