The latest Node release includes require() support for ES modules, improved WebSocket communications, and an update to Google's V8 JavaScript engine 2.4. 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. Related content feature 14 great preprocessors for developers who love to code Sometimes it seems like the rules of programming are designed to make coding a chore. Here are 14 ways preprocessors can help make software development fun again. By Peter Wayner Nov 18, 2024 10 mins Development Tools Software Development feature Designing the APIs that accidentally power businesses Well-designed APIs, even those often-neglected internal APIs, make developers more productive and businesses more agile. By Jean Yang Nov 18, 2024 6 mins APIs Software Development news Spin 3.0 supports polyglot development using Wasm components Fermyon’s open source framework for building server-side WebAssembly apps allows developers to compose apps from components created with different languages. By Paul Krill Nov 18, 2024 2 mins Microservices Serverless Computing Development Libraries and Frameworks news Go language evolving for future hardware, AI workloads The Go team is working to adapt Go to large multicore systems, the latest hardware instructions, and the needs of developers of large-scale AI systems. By Paul Krill Nov 15, 2024 3 mins Google Go Generative AI Programming Languages Resources Videos