Is a JavaScript runtime built on Chrome`s V8 JavaScript engine

Node.js (32-bit)

Node.js 22.9.0 (32-bit)

  -  25.7 MB  -  Open Source

Sometimes latest versions of the software can cause issues when installed on older devices or devices running an older version of the operating system.

Software makers usually fix these issues but it can take them some time. What you can do in the meantime is to download and install an older version of Node.js 22.9.0 (32-bit).


For those interested in downloading the most recent release of Node.js (32-bit) or reading our review, simply click here.


All old versions distributed on our website are completely virus-free and available for download at no cost.


We would love to hear from you

If you have any questions or ideas that you want to share with us - head over to our Contact page and let us know. We value your feedback!

  • Node.js 22.9.0 (32-bit) Screenshots

    The images below have been resized. Click on them to view the screenshots in full size.

    Node.js 22.9.0 (32-bit) Screenshot 1
  • Node.js 22.9.0 (32-bit) Screenshot 2
  • Node.js 22.9.0 (32-bit) Screenshot 3
  • Node.js 22.9.0 (32-bit) Screenshot 4

What's new in this version:

New API to retrieve execution Stack Trace:
- A new API getCallSite has been introduced to the util module. This API allows users to retrieve the stacktrace of the current execution.

Disable V8 Maglev:
- We have seen several crashes/unexpected JS behaviors with maglev on v22 (which ships V8 v12.4). The bugs lie in the codegen so it would be difficult for users to work around them or even figure out where the bugs are coming from. Some bugs are fixed in the upstream while some others probably remain.
- As v22 will get stuck with V8 v12.4 as LTS, it will be increasingly difficult to backport patches for them even if the bugs are fixed. So disable it by default on v22 to reduce the churn and troubles for users.

Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext:
- This releases introduces a new option to the API tls.createSecureContext. For now on users can use tls.createSecureContext({ allowPartialTrustChain: true }) to treat intermediate (non-self-signed) certificates in the trust CA certificate list as trusted.

Other Notable Changes:
- src: create handle scope in FastInternalModuleStat
- (SEMVER-MINOR) stream: relocate the status checking code in the onwritecomplete

Deprecations:
- repl: doc-deprecate instantiating node:repl classes without new
- zlib: deprecate instantiating classes without new