1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18: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

@@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
For a steady stream of TILs from a variety of rocketeers, checkout For a steady stream of TILs from a variety of rocketeers, checkout
[til.hashrocket.com](https://til.hashrocket.com/). [til.hashrocket.com](https://til.hashrocket.com/).
_576 TILs and counting..._ _577 TILs and counting..._
--- ---
@@ -217,6 +217,7 @@ _576 TILs and counting..._
- [Globally Install A Package With Yarn](javascript/globally-install-a-package-with-yarn.md) - [Globally Install A Package With Yarn](javascript/globally-install-a-package-with-yarn.md)
- [Immutable Remove With The Spread Operator](javascript/immutable-remove-with-the-spread-operator.md) - [Immutable Remove With The Spread Operator](javascript/immutable-remove-with-the-spread-operator.md)
- [Initialize A New JavaScript Project With Yarn](javascript/initialize-a-new-javascript-project-with-yarn.md) - [Initialize A New JavaScript Project With Yarn](javascript/initialize-a-new-javascript-project-with-yarn.md)
- [Install The Latest Version Of Node With Nvm](javascript/install-the-lateset-version-of-node-with-nvm.md)
- [Matching Multiple Values In A Switch Statement](javascript/matching-multiple-values-in-a-switch-statement.md) - [Matching Multiple Values In A Switch Statement](javascript/matching-multiple-values-in-a-switch-statement.md)
- [Numbers Are Empty](javascript/numbers-are-empty.md) - [Numbers Are Empty](javascript/numbers-are-empty.md)
- [Object Initialization With Shorthand Property Names](javascript/object-initialization-with-shorthand-property-names.md) - [Object Initialization With Shorthand Property Names](javascript/object-initialization-with-shorthand-property-names.md)

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/)