mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 15:18:01 +00:00
13 lines
425 B
Markdown
13 lines
425 B
Markdown
# Install The Latest Version Of Node With Nvm
|
|
|
|
[Nvm](https://github.com/creationix/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.
|
|
|
|
```bash
|
|
$ nvm install node --reinstall-packages-from=node
|
|
```
|
|
|
|
[source](https://bytearcher.com/articles/ways-to-get-the-latest-node.js-version-on-a-mac/)
|