1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Install The Latest Version Of Node With Nvm as a javascript til

This commit is contained in:
jbranchaud
2017-10-19 09:42:19 -05:00
parent 9bee8f7a27
commit 37edf94c85
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
# 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/)