Skip to content

Instantly share code, notes, and snippets.

@NickNaso
Forked from chicoxyzzy/nvm-node-nightlies.md
Created August 13, 2019 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickNaso/1fc747673cfbb6ad32bf91d1b25a5f82 to your computer and use it in GitHub Desktop.
Save NickNaso/1fc747673cfbb6ad32bf91d1b25a5f82 to your computer and use it in GitHub Desktop.
Installing Node Nightlies via nvm

You can install Node Nightlies/RCs via nvm using NVM_NODEJS_ORG_MIRROR environment variable.

Install latest Node RC

NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/rc/ nvm i node

Install latest Node.js Nightly

NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly/ nvm i node

Install latest Node ChakraCore

NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/chakracore-nightly/ nvm i node

Install latest Node v8 Canary

NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/v8-canary/ nvm i node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment