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
If anyone's using zsh-nvm I just baked this functionality in. You can do
nvm install nightly|rc
nvm use nightly|rc
and it'll handle the rest.Thanks for the idea @chicoxyzzy!