Close Menu
Luminari | Learn Docker, Kubernetes, AI, Tech & Interview PrepLuminari | Learn Docker, Kubernetes, AI, Tech & Interview Prep
  • Home
  • Technology
    • Docker
    • Kubernetes
    • AI
    • Cybersecurity
    • Blockchain
    • Linux
    • Python
    • Tech Update
    • Interview Preparation
    • Internet
  • Entertainment
    • Movies
    • TV Shows
    • Anime
    • Cricket
What's Hot

Tornado Cash dev’s attorneys say prosecutors hid exculpatory evidence

May 18, 2025

Grok says it’s ‘skeptical’ about Holocaust death toll, then blames ‘programming error’

May 18, 2025

Wes Anderson Thrills Cannes With ‘The Phoenician Scheme’ Premiere

May 18, 2025
Facebook X (Twitter) Instagram
Facebook X (Twitter) Instagram
Luminari | Learn Docker, Kubernetes, AI, Tech & Interview Prep
  • Home
  • Technology
    • Docker
    • Kubernetes
    • AI
    • Cybersecurity
    • Blockchain
    • Linux
    • Python
    • Tech Update
    • Interview Preparation
    • Internet
  • Entertainment
    • Movies
    • TV Shows
    • Anime
    • Cricket
Luminari | Learn Docker, Kubernetes, AI, Tech & Interview PrepLuminari | Learn Docker, Kubernetes, AI, Tech & Interview Prep
Home » An introduction to Node.js 24 from Red Hat
Linux

An introduction to Node.js 24 from Red Hat

HarishBy HarishMay 7, 2025No Comments7 Mins Read
Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Email
Share
Facebook Twitter Pinterest Reddit WhatsApp Email


The Node.js community is once again gearing up for a major release with Node.js 24. This release line is an even-numbered one, which means that it will be promoted to long-term support (LTS) in October 2025 and receive support until April 2028.

Before Node.js 24 is officially promoted to LTS, the team needs help from the community to test it and share feedback. That way, any issues can be caught early, making the release smoother for everyone.

For those using Red Hat Enterprise Linux (RHEL), Node.js support will start after the release is promoted to LTS in October, which means you can expect to find packages for the RPM Package Manager (rpm) and containers around that time. However, to facilitate advanced testing, the Red Hat Node.js team plans to provide some unofficial container images stay tuned for more details.

Node.js remains a popular choice for backend JavaScript development, evidenced by its high download numbers from nodejs.org in the past year. In our opinion, it’s the best choice for those looking for a widely used and stable backend JavaScript runtime. This is why we make it available in RHEL as well as providing pre-built Node.js containers.

If you follow Red Hat’s work in the Node.js project, or have been following our regular updates, you’ll see that our strategy is to focus our community work on aspects we believe are important to our customers, including:

Stable and predictable releasesPlatform supportSecurityDiagnosticsPerformanceCode quality

Our commitment to these priorities, combined with our internal and customer collaborations, which includes helping to keep the Node.js infrastructure running, keeping V8 running on the s390 and PPC architectures, integrating support for ubi into buildpacks, as well as our sharing of expertise in the Node.js reference architecture, has been keeping us busy.

At the time of Node.js 24, we are excited to share some recent features and ongoing initiatives that have piqued our interest, or in which our team has played a role. Due to how quickly features flow back into the existing Node.js release line, they may not all be technically new in Node.js 24 but they are worth mentioning as having landed since the last major release.

Highlights of recent additions and changes

Experimental TypeScript support

We were excited to cover experimental support for a subset of TypeScript in our introduction to Node.js 23.x. Since then the larger ecosystem has taken steps to more easily support using this subset in Node.js.

The first issue was that compiling the same TypeScript that Node.js could run was not easy because there was no set of options which would let you fully compile TypeScript which imported files with the .ts extension. People from the TypeScript and Node.js teams collaborated on a solution which was landed as the addition of –rewriteRelativeImportExtensions in https://github.com/microsoft/TypeScript/pull/59767.

The second issue was that it was too easy to use TypeScript options that could not be used with Node.js by default. This was addressed through the introduction of –erasableSyntaxOnly in TypeScript 5.8.  This option allows you to specify that tsc should only support the subset of TypeScript that will work with Node.js. You can read more about it here.

It’s great to see the larger ecosystem working to make it easier to work with the experimental support for TypeScript in Node.js.

Continued progress on performance 

Performance continues to be an important area of progress for Node.js helping you get the most out of your existing systems. Of particular note, Node.js 24 includes updates to V8, Undici and the AsyncLocalStorage implementation.

This release includes a V8 update to V8 13.6. Since the last SemVer major this includes a number of new features. A few notables ones include:

A new API to pause execution for a specified durationSupport for 64-bit memory in WebAssemblyThe new ‘using’ and ‘await using’ declarations for deterministic resource cleanupA new static method to check if a value is an Error object

Many thanks to Michaël Zasso for all his work on helping the project upgrade to newer versions of V8.

Node.js 24 also updates Undici to the latest major version (7.X) which includes better performance and support for some additional HTTP features. You can read more about that here.

The last thing we will mention is the performance improvements made to the implementation of AsyncLocalStorage. This is an important API for production deployments when application performance monitoring (APM) tools are being used. You can read more about it in #55552.

npm 11.0.0

Node.js 24 comes with npm 11.0.0. A breaking change in this version of npm is that –ignore-scripts are no longer run for the prepared lifecycle script. You can read more about npm 11.0.0 in #56274.

Permission model improvements

Over the last few years, the permission model has been incrementally improved and marked as stable in v23.5.0. As part of completing this process the flag used to enable it has been changed from –experimental-permission to simply –permission. Many thanks to Rafael Gonzaga for all of the hard work he has put into the permission model..

Test runner enhancements

The behavior of the test runner module has been changed so that the runner now automatically waits for subtests to finish. This means you no longer need to await subtests. Here’s an example of what this looks like: 

test(‘top level test’, async (t) => {
await t.test(‘subtest 1’, (t) => {
  assert.strictEqual(1, 1);
});
await t.test(‘subtest 2’, (t) => {
  assert.strictEqual(2, 2);
});
});

becomes

test(‘top level test’, async (t) => {
t.test(‘subtest 1’, (t) => {
  assert.strictEqual(1, 1);
});
t.test(‘subtest 2’, (t) => {
  assert.strictEqual(2, 2);
});
});

and reduces the likelihood of common errors related to unhandled promises. Thanks to Colin Ihrig for his work on the test runner.

Progress on web compatibility 

As mentioned in previous blog posts, web compatibility continues to be a priority for the project and each release brings incremental improvements. In this release URL Pattern is now exposed on the global object which makes it easier to use. 

Platform support

Dependency updates in Node.js now require newer build toolchains on macOS and Windows.

For macOS, the minimum supported version is now macOS 13.5 and the minimum version of Xcode to build Node.js is now Xcode 16.1.Windows builds now require ClangCL, those building their own binaries will need to switch as compiling with Visual Studio C++ compiler will no longer work.

Security and supply chain security

While security and supply chain security have always been important, the awareness and importance continues to grow. Within the Node.js project, a significant amount of effort is devoted to security-related work, ranging from identifying and resolving vulnerabilities to executing security releases.

Continued progress has been made on automating security releases, helping the project address vulnerabilities more quickly. Many thanks to funding from the OpenSSF to make this work possible.

We’d also like to express our appreciation to the companies and individuals who have stepped up to help with security releases as security release stewards or as part of the security triage team, the Release Working Group, and all those who contribute to the security release efforts. In particular we’d like to thank all of those involved in addressing the recent improvements to the CI with respect to supply chain security including our own Richard Lau who did a lot of the heavy lifting.

In line with what is important to our customers, Red Hat is proud to be doing part of this work through our involvement in the triage team, through security releases and by contributing to the efforts of the security working group team, along with all of the other contributors across the project.

Next-10

While major releases are the time people look at what’s new, it’s also important to look forward to what’s coming in the future. The project is working on that as part of the Next-10 effort and has defined the constituencies, needs of those constituencies and the technical priorities based on those needs. 

The Next-10 team has just finished up the questions for this year’s survey which should go out imminently. Keep a look out for it and contribute your feedback to help the project understand the ecosystems priorities. You can check out the results from last year’s survey.

If you want to learn more about these initiatives or get involved you can check out the next-10 repo or join our biweekly meetings.

A big thank you

Our thanks go out to every individual involved in the initial 24.x release of Node.js. The project has a diverse group of contributors who work tirelessly, and each release is a culmination of their collective efforts.

The community Node,js blog and OpenJS blog contain more details about the latest enhancements and modifications.

For further insights on the Node.js community and ways to participate, visit the project repository and website. To explore Red Hat’s involvement in the Node.js space, refer to the Red Hat Node.js Developers page. Additionally, Red Hat customers can go to the customer portal for additional information.



Source link

Share. Facebook Twitter Pinterest LinkedIn WhatsApp Reddit Email
Previous ArticleNate Bargatze Says Disney Head ‘Doesn’t Care About the Audience’
Next Article 2025 Crayon Shin-chan Film Casts Kento Kaku – News
Harish
  • Website
  • X (Twitter)

Related Posts

Friday Five — May 16, 2025

May 16, 2025

Zero trust and sovereignty for cloud-native and AI workloads

May 16, 2025

Run RHEL-certified apps on Red Hat OpenShift Virtualization

May 16, 2025

Driving IT modernization with OpenShift Virtualization

May 16, 2025

The open source feature store for AI

May 16, 2025

Red Hat OpenShift Virtualization sees strong partner ecosystem momentum

May 15, 2025
Add A Comment
Leave A Reply Cancel Reply

Our Picks

Tornado Cash dev’s attorneys say prosecutors hid exculpatory evidence

May 18, 2025

Grok says it’s ‘skeptical’ about Holocaust death toll, then blames ‘programming error’

May 18, 2025

Wes Anderson Thrills Cannes With ‘The Phoenician Scheme’ Premiere

May 18, 2025

Anime Expo Hosts Mobile Suit Gundam GQuuuuuuX Staff, Naohiro Ogata, Peach-Pit, More – News

May 18, 2025
Don't Miss
Blockchain

Tornado Cash dev’s attorneys say prosecutors hid exculpatory evidence

May 18, 20252 Mins Read

Attorneys for Tornado Cash developer Roman Storm filed a motion asking the court to reconsider…

‘Bitcoin Standard’ author backs funding dev to make spamming Bitcoin costly

May 18, 2025

The Public internet is a bottleneck for blockchain — DoubleZero CEO

May 17, 2025

High-speed oracles disrupting $50B finance data industry — Web3 Exec

May 17, 2025

Subscribe to Updates

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

About Us
About Us

Welcome to Luminari, your go-to hub for mastering modern tech and staying ahead in the digital world.

At Luminari, we’re passionate about breaking down complex technologies and delivering insights that matter. Whether you’re a developer, tech enthusiast, job seeker, or lifelong learner, our mission is to equip you with the tools and knowledge you need to thrive in today’s fast-moving tech landscape.

Our Picks

Grok says it’s ‘skeptical’ about Holocaust death toll, then blames ‘programming error’

May 18, 2025

U.S. lawmakers have concerns about Apple-Alibaba deal

May 18, 2025

Microsoft’s Satya Nadella is choosing chatbots over podcasts

May 17, 2025

Subscribe to Updates

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

Facebook X (Twitter) Instagram Pinterest
  • Home
  • About Us
  • Advertise With Us
  • Contact Us
  • DMCA Policy
  • Privacy Policy
  • Terms & Conditions
© 2025 luminari. Designed by luminari.

Type above and press Enter to search. Press Esc to cancel.