1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00
Files
til/javascript/install-the-latest-version-of-node-with-nvm.md

425 B

Install The Latest Version Of Node With Nvm

Nvm, the Node Version Manager, is a great way to manage multiple versions of Node.js on a machine. Run the following command to get nvm to install the latest version of Node.js for you.

$ nvm install node --reinstall-packages-from=node

source