ZIP
WinGet
Node.js 18
Node.js Foundation · 18.20.0 · x64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Distributed as a ZIP archive — extract the contents and run the executable directly. No installer is included.
File Identity
Filename
node-v18.20.0-win-x64.zip
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
OpenJS.NodeJS.18
Version
18.20.0
Description
Run JavaScript Everywhere
License
MIT
↗
Homepage
https://nodejs.org/
Release Notes
Notable Changes
Added support for import attributes
Support has been added for import attributes, to replace the old import
assertions syntax. This will aid migration by making the new syntax available
across all currently supported Node.js release lines.
This adds the with keyword which should be used in place of the previous
assert keyword, which will be removed in a future semver-major Node.js
release.
For example,
import "foo" assert { ... }
should be replaced with
import "foo" with { ... }…