Trip report: Node.js collaboration summit (2026 London)
- Node.js v27 起版本号将与发布年份对齐,精简长期维护的发布线以提升安全响应可持续性。
- 新 Streams API(stream/iter)以 async iterable 为核心,强制显式背压策略,兼顾 Web 兼容性与后端性能。
- 协作机制转向‘评审权下放’:解耦 commit 权限与 reviewer 身份,推动工作组成员参与代码审查。
结构提纲
按章节快速跳转。
- §峰会概况
2026 年 4 月伦敦 Node.js 协作峰会举办,40+ 线下参与者,聚焦核心演进与协作可持续性。
v27 起采用年份对齐版本号,减少并行维护分支,缓解志愿者模型下的安全发布压力。
stream/iter 实验性 API 登陆 v25.9,基于 async iterable 设计,强制背压策略选择。
探索评审权开放、代码所有权强化、非 collaborator 可参与 review 的新协作路径。
讨论 Node.js 原生可观测性支持路线图,强调与 OTel 标准对齐及诊断工具链整合。
思维导图
用一张图看清主题之间的关系。
查看大纲文本(无障碍 / 无 JS 友好)
- Node.js 2026 协作峰会
- 发布策略
- 年份对齐版本号(v27+)
- 缩减并行发布线
- Streams 架构
- stream/iter 实验性 API
- async iterable 原生支持
- 显式背压策略
- 协作治理
- 评审权开放给工作组成员
- 解耦 commit bits 与 reviewer 角色
- 降低新人贡献门槛
金句 / Highlights
值得收藏与分享的关键句。
Starting with Node.js v27, the Node.js version numbers align with the calendar year of their initial Current release!
The new stream/iter API has landed in Node.js core and shipped in v25.9.0 as an experimental feature.
We discussed ideas to enforce code ownership to encourage collaborators to take over more review work.
Managing security releases across four or five active release lines has become difficult to sustain in the current Node.js voluntary work model.
Chengzhong Wu, Joyee Cheung
This April, the first Node.js Collaboration Summit of 2026 was hosted by Bloomberg in London. In this edition, we welcomed over 40 in-person participants, and around a dozen more joined remotely.
The recording of the summit is available in this playlist. Here is a recap of what happened at the summit.
[Next 10](http://nodejs.org/en/blog/events/collab-summit-2026-london#next-10)
In this session, Jacob Smith reviewed results from the Collaborator Health survey and compared health numbers between 2025 and 2026, as well as some key highlights from the 2025 user survey (including new areas, which have generally different usage); he and Marco Ippolito led an on-site review of the questions that would be asked in the Next-10 survey for 2026, including suggestions to existing questions, questions and options to add or remove, and recent AI discussions.
[New Release Schedule](http://nodejs.org/en/blog/events/collab-summit-2026-london#new-release-schedule)
Rafael Gonzaga walked the audience through the new release schedule that will go into effect starting with Node.js v27. TL;DR, starting with Node.js v27, the Node.js version numbers align with the calendar year of their initial Current release!
This is a reflection of the current Node.js volunteer-based maintenance and an effort to keep the Node.js project sustainable in the long run. When it comes to security vulnerabilities, managing security releases across four or five active release lines has become difficult to sustain in the current Node.js voluntary work model. By reducing the number of concurrent release lines, the project can focus on better supporting the releases people actually use.
Read more about the new release schedule in this blog post.
[New Streams API](http://nodejs.org/en/blog/events/collab-summit-2026-london#new-streams-api)
James Snell presented a new, more unified Streams API for the Web and Node.js. Historically, Node.js has relied on the highly optimized `node:stream`. In recent years, Node.js has also implemented WHATWG Web Streams to ensure cross-platform compatibility with browsers, Deno, Bun, and edge environments (like Cloudflare Workers). However, managing two different stream ecosystems has created friction for developers.
The Web Streams API has significant promise and allocation overhead. It was designed primarily for browsers, and when applied to high-throughput backend environments, the architectural cost becomes obvious.
The proposed New Streams API takes advantage of modern JavaScript Async Iteration, treats streams natively as async iterables, leaning heavily into `async/await` and `for await...of` loops, which is how modern developers naturally write code. Handling a filled data buffer has historically been a confusing black box. The new API also proposes forcing developers to explicitly choose a backpressure strategy when a buffer is full.
The new `stream/iter` API has landed in Node.js core and shipped in v25.9.0 as an experimental feature. At the summit, we collected feedback on the design, compatibility with existing stream APIs, performance implications, additional use cases, whether the new proposal can help address some common issues in the existing APIs, and discussed whether the new Streams API can be implemented on the Web.
[Node.js Collaboratorship](http://nodejs.org/en/blog/events/collab-summit-2026-london#nodejs-collaboratorship)
Jacob Smith led the session on exploring ways to lower the barrier to entry for developers who want to contribute to the Node.js core, ensuring the project remains accessible to new talent.
Triaging issues and reviewing pull requests takes a massive amount of maintainer bandwidth. At the session, we discussed ideas to enforce code ownership to encourage collaborators to take over more review work. Since in the Node.js voluntary work model, this can come with difficulties, we also brainstormed ideas about decoupling collaboratorship from the commit bits and extending reviewership to working group/team members, in order to encourage non-collaborators to review and build trust. We'll continue the discussions on GitHub.
[OpenTelemetry](http://nodejs.org/en/blog/events/collab-summit-2026-london#opentelemetry)
Chengzhong Wu presented the CNCF OpenTelemetry project. The session was prompted by a pull request from Bryan English to add Node.js built-in OpenTelemetry support. OpenTelemetry is one of the most active projects in the Cloud Native Computing Foundation, right after Kubernetes. OpenTelemetry has emerged as the de-facto standard in the world of observability with three pillars: traces, metrics, and logs. The project defines a vendor-neutral API for instrumentation and an SDK with a data processing pipeline. Apart from the OpenTelemetry API and SDK, there are also efforts to define Semantic Conventions (SemConv) and the native data format OpenTelemetry Protocol (OTLP) for sending telemetry data to backends. OpenTelemetry is an open governance project and consists of contributors from both vendors and users.
[Observability Infrastructure](http://nodejs.org/en/blog/events/collab-summit-2026-london#observability-infrastructure)
Stephen Belanger shared thoughts and work on improving Node.js observability infrastructure. The presentation covered `using` syntax support for `AsyncLocalStorage` and a new `diagnostic_channel` API `BoundedChannel`. Furthermore, Stephen presented ideas about new Node.js built-in modules for metrics and traces respectively, and the potential to add built-in support for the OpenTelemetry OTLP data protocol, improving OpenTelemetry serialization performance.
[Node.js use of AI contributions](http://nodejs.org/en/blog/events/collab-summit-2026-london#nodejs-use-of-ai-contributions)
A few weeks before the summit, a large pull request implementing VFS in Node.js with the assistance of an AI coding agent led to debates over the use of AI in Node.js core. In this session, Jacob Smith walked the audience through the background of this controversy, the legal opinion from the OpenJS foundation, and the current status of the use of AI in other OSS projects.
We then started listing pros & cons, concerns and thoughts about the use of AI in Node.js core using a retrospective board. There were a lot of diverse opinions about this topic. At the session, we discussed the challenges from reviewer bandwidth exacerbated by the use of AI, the ethical concerns about AI, whether a ban is feasible or desirable, whether a disclosure on the use of AI may help or draw further legal and ethical concerns, how AI may help maintenance and lower barrier of entry, and ideas on reducing the amount of noise caused by the use of AI.
We also brainstormed how to adapt open-source governance for the modern era. Strategies discussed include enforcing a process that requires lightweight design documents, RFCs, explicit maintainer buy-in before a large PR, and pledge from the human contributor submitting the code who should take full responsibility for its quality, security, and integration. We'll continue the discussions and iteration of the policy documents on GitHub.
[Userland migrations](http://nodejs.org/en/blog/events/collab-summit-2026-london#userland-migrations)
Jacob Smith and Bruno Rodrigues presented increased usage of userland migrations. Migrations for Node.js 22.x to 24.x deprecations are almost complete. For Node.js 25.9.0, a codemod was published along side the deprecation introduced.
[Stabilization of module customization hooks and vm.Modules](http://nodejs.org/en/blog/events/collab-summit-2026-london#stabilization-of-module-customization-hooks-and-vmmodules)
Joyee Cheung facilitated a session to discuss the stabilization of module loader hooks and the vm Module API.
As `module.register()` is set to be doc-deprecated for 25 and below and runtime-deprecated for 26 and above due to maintenance issues, we are looking into helping the ecosystem migrate to the `module.registerHooks()` API. Ideas include providing a userland ponyfill that re-implements most of the `module.register()` functionality using `module.registerHooks()`, and having some userland-migration automation tools to help facilitate migration.
Joyee also presented a new design for the vm Module APIs that have been experimental for 9 years in order to address known issues and finally bring it to stabilization. We collected feedback on how to integrate it with WebAssembly modules to ensure it's future-proof with ongoing ESM integration proposals in standardization bodies. We'll continue iterating on the design in the GitHub issue.
[Libuv v2](http://nodejs.org/en/blog/events/collab-summit-2026-london#libuv-v2)
Santiago Gimeno shared that after more than a decade on version 1, there is a renewed push to launch libuv v2, which introduces necessary breaking changes to clean up the codebase, remove legacy APIs, and improve cross-platform consistency—capabilities already being leveraged by Julia.
As migrating to libuv v2 can break the ABI, we discussed ideas on how to mitigate it, for example by leveraging Node-API, and the nuances in this approach e.g. `napi_get_uv_event_loop` can still be impacted by libuv ABI changes, though its use is limited and its ABI stability is warned in the documentation. We also discussed getting help to maintain v1 with security patches for a limited timespan, how to bring back `io_uring`, and which Node.js can start to ship libuv v2 (a very tentative timeline could be in 27).
[Node.js Virtual File System](http://nodejs.org/en/blog/events/collab-summit-2026-london#nodejs-virtual-file-system)
Matteo Collina presented the proposal for a Node.js built-in Virtual File System. By taking concepts previously explored in userland libraries (like `@platformatic/vfs`) and standardizing them into a core `node:vfs` module, Node.js can intercept standard filesystem calls and route them through a virtualized, memory-based layer. Developers can define specific data sources in memory (providers) and "mount" them so the runtime treats them exactly like local directories. The proposal also provides the ability to layer virtual filesystems on top of one another, or place a virtual layer directly over the physical disk to safely mock or override files.
In this session, Matteo walked the audience through the motivation of this feature: making file system virtualization easier for single-executable applications and testing, and replaces existing brittle practices that achieve this through user-land monkey-patching. Following a brief overview of the implementation architecture and the design choices, we collected more feedback on the PR, including stack trace visibility, observability, security, worker thread propagation, the ability to toggle it in specific paths, and support in native code. We'll continue iterating on this PR in GitHub.
[Node.js Security - State of the Ecosystem & What's Next](http://nodejs.org/en/blog/events/collab-summit-2026-london#nodejs-security---state-of-the-ecosystem--whats-next)
Rafael Gonzaga shared that the security team has recently advanced the ecosystem through a refined threat model, improved permission models, and enhanced release automation, and the new VEX (Vulnerability Exploitability eXchange) files that the security team is working on to reduce false positives for security scanners.
These efforts are currently being overshadowed by a massive influx of AI-generated vulnerability reports. This industry-wide surge, driven largely by users seeking CVE attribution and financial bounties, has severely strained maintainer capacity with high-noise, duplicative submissions that often lack reproduction steps or misclassify standard bugs as severe security threats. Despite attempted mitigations like pausing bug bounties, raising HackerOne signal requirements, and clarifying guidelines, the overwhelming volume has significantly driven up resolution times. To combat this bottleneck, the team is exploring strategies such as securing early access for proactive testing, attempting to alter reporting agent behaviors, and adopting a public security flow to bypass embargoes and speed up CI testing.
In the session we revisited a thought-provoking proposal of making the security triage and bugfix process completely public to prevent a false sense of security in the age of AI, and to get rid of the CI embargo that has made testing inefficient. We discussed a few middle ground solutions, including keeping extending the visibility to more members in the organization, handling vulnerabilities of different severity with different visibility settings, and creating better documentations to drive AI agents away from generating false positive reports.
[Thanks](http://nodejs.org/en/blog/events/collab-summit-2026-london#thanks)
Thank you to all the attendees! Special appreciation goes to Bloomberg for hosting the summit and creating a welcoming space for the Node.js community.
A big thanks as well to Thomas Chetwin (@tchetwin), Chengzhong Wu, Matteo Collina, Joyee Cheung, and the OpenJS Foundation for organizing and making this event possible.
The Node.js Collaboration Summit recordings are now available at YouTube.
问问这篇内容
回答仅基于本篇材料Skill 包
领域模板,一键产出结构化笔记论文精读包
把一篇论文 / 技术博客精读成结构化笔记:问题、方法、实验、批判、延伸阅读。
- · TL;DR(1 段)
- · 研究问题与动机
- · 方法概览
投融资雷达包
把一条融资 / 创投新闻整理成投资人视角的雷达卡:交易要点、判断、竞争格局、风险、尽调清单。
- · 交易要点(公司 / 轮次 / 金额 / 投资人 / 估值,材料未明示则写 “未披露”)
- · 投资 thesis(这家公司为什么值得关注)
- · 竞争格局与替代方案