Paul Krill
Editor at Large

Node.js 22 arrives, backs ECMAScript modules

news
Apr 24, 20242 mins

The latest Node release includes require() support for ES modules, improved WebSocket communications, and an update to Google's V8 JavaScript engine 2.4.

shutterstock 2227591131 common Swift bird in flight over sunlit green grass
Credit: Per Grunditz / Shutterstock

Node.js 22, the latest version of the popular JavaScript runtime, has arrived, featuring require() support for ECMAScript modules, an improved WebSocket client, and an updated version of the Google V8 JavaScript engine.

Announced April 24, version 22 of the event-driven, asynchronous runtime can be downloaded from Nodejs.org. The release adds require() support for synchronous ECMAScript module graphs under the flag: --experimental-require-module. If this flag is enabled and the ES module meets a couple of requirements, require() will load the requested module. Additionally, Node.js 22 includes an experimental feature for the execution of scripts from package.json with the CLI flag: node --run <script-in-package-json>.

Also included in Node.js 22 is Google’s V8 JavaScript engine release 12.4, with features such as WebAssembly garbage collection and iterator helpers. V8’s Maglev optimizing compiler now is enabled by default on some architectures. WebSocket communications have also been updated with a browser-compatible implementation enabled by default. A WebSocket client to Node.js is now provided without external dependencies, where previously this implementation was behind a flag.

Node.js 22 also enhances the efficiency of developing AbortSignal instances, improving performance in fetchcode and the test runner. The high water mark for streams was increased from 16KiB to 64KiB, providing a performance boost at the cost of slightly higher memory usage.

From Node.js 22 and on, watch mode is considered stable. When in watch mode, changes in watched files cause the Node.js process to restart. And, for pattern matching, Node.js 22 adds to the node:fs module the functions glob  and globSync. Developers can utilize these functions for matching file paths based on specific patterns.

Node.js proponents advised that with Node.js 18 going to end-of-life status in April 2025, users should start planning an upgrade to Node.js versions 20 or 22.

Paul Krill

Paul Krill is editor at large at InfoWorld. Paul has been covering computer technology as a news and feature reporter for more than 35 years, including 30 years at InfoWorld. He has specialized in coverage of software development tools and technologies since the 1990s, and he continues to lead InfoWorld’s news coverage of software development platforms including Java and .NET and programming languages including JavaScript, TypeScript, PHP, Python, Ruby, Rust, and Go. Long trusted as a reporter who prioritizes accuracy, integrity, and the best interests of readers, Paul is sought out by technology companies and industry organizations who want to reach InfoWorld’s audience of software developers and other information technology professionals. Paul has won a “Best Technology News Coverage” award from IDG.

More from this author