Node.js NES Trial
How to download the Node.js NES Trial
Current Trial Versions
- Node.js v16.20.2 'Gallium' (NES)
- Node.js v14.21.3 'Fermium' (NES)
- Node.js v12.22.12 'Erbium' (NES)
Download Node.js NES Trial
The fastest way to download Node.js is through NVM.
Unfortunately, Windows is not supported at the moment.
export NVM_NODEJS_ORG_MIRROR=https://registry.nes.herodevs.com/nodejs/all/
export NVM_AUTH_HEADER="Bearer <token>"
nvm ls-remote # check all the available versions
nvm install v16.20.2-nes
nvm install v14.21.3-nes
nvm install v12.22.12-nes
nvm use v16.20.2-nes
nvm use v14.21.3-nes
nvm use v12.22.12-nes
Alternatively, you can download the binary using curl
or wget
.
To retrieve the full list of available versions, run the following command in your terminal:
curl --header "Authorization: Bearer" https://registry.nes.herodevs.com/nodejs/nes/index.tab
For example, to download the Node.js 16 NES trial, run the following command in your terminal:
With curl
for Windows x64:
curl -sL -H "Authorization: Bearer <token>" https://registry.nes.herodevs.com/nodejs/nes/v16.20.2-nes/node-v16.20.2-nes-win-x64.zip
With wget
for Windows x64:
wget --header="Authorization: Bearer <token>" https://registry.nes.herodevs.com/nodejs/nes/v16.20.2-nes/node-v16.20.2-nes-win-x64.zip
Dependending on the version you want to download, replace the version number in the URL, the platform and the architecture.
Versions: v16.20.2-nes
with v14.21.3-nes
or v12.22.12-nes
.
Platforms: darwin
, linux
, win
.
Architectures: arm64
, x64
.
Extensions: .zip
, .tar.gz
.