Installing Node.js with NVM – Linux and macOS
Node provides installation binaries for Windows and macOS on its website:https://nodejs.org/en/download/.
It's easy to install Node.js by downloading the appropriate installer for your OS and processor. However, it is useful to have a version manager so that you can work on projects that require different versions, and use the latest version. This is especially useful if your package manager doesn't provide a recent version of Node.js (for example, Ubuntu).
Subsequent recipes will assume that Node.js is installed. This recipe demonstrates how to install Node.js for Linux and macOS. The next recipe will cover the installation instructions for Windows.
Getting ready
This recipe is only for Linux and macOS. See the next recipe for Windows instructions.
You must have git installed. This comes installed on macOS, and Linux distributions should provide git through their package managers.
How to do it...
- Open your command-line application.
- Clone the
nvm
project...