
#NVM INSTALL NODE V11.4.0 ARM32 INSTALL#
Then we used nvm to install the latest LTS release of Node.js and set it as our environment's default Node.js version. In this tutorial we walked through installing the nvm bash script and making sure it works.

Tip: Use nvm alias default to switch the version of Node.js used by default when starting a new shell. Switch to the latest installed version: nvm use node To switch to another version for the active shell use nvm use.įor a specific version provide a version number: nvm use 10.16.3 You can then switch between them depending on which project you're working on. The real benefit of nvm comes when you install different versions of Node.js. Use nvm to install other versions of Node.js You can change this behavior using the nvm alias command.Įxample to set the default version of node to use when starting a new shell to 10.0.0: nvm alias default 10.0.0 Practically this means that anytime you start a new shell, and the nvm.sh script is sourced, it will default that shell to using the installed lts release. This indicates that nvm has set lts/* as the default alias. Note this line Creating default alias: default -> lts/* (-> v10.16.3). Verify it worked, and that the version is correct: node -version

nvm install -ltsĭownloading and installing node v10.16.3. Now that you've got nvm installed let's use it to install, and use, the current LTS version of Node.js. Use nvm to install the latest LTS release of Node.js Finally, run the nvm command to get a list of all the available sub-commands and to further verify that installation worked.
