Skip to content

Commit 37edf94

Browse files
committed
Add Install The Latest Version Of Node With Nvm as a javascript til
1 parent 9bee8f7 commit 37edf94

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
1010
For a steady stream of TILs from a variety of rocketeers, checkout
1111
[til.hashrocket.com](https://til.hashrocket.com/).
1212

13-
_576 TILs and counting..._
13+
_577 TILs and counting..._
1414

1515
---
1616

@@ -217,6 +217,7 @@ _576 TILs and counting..._
217217
- [Globally Install A Package With Yarn](javascript/globally-install-a-package-with-yarn.md)
218218
- [Immutable Remove With The Spread Operator](javascript/immutable-remove-with-the-spread-operator.md)
219219
- [Initialize A New JavaScript Project With Yarn](javascript/initialize-a-new-javascript-project-with-yarn.md)
220+
- [Install The Latest Version Of Node With Nvm](javascript/install-the-lateset-version-of-node-with-nvm.md)
220221
- [Matching Multiple Values In A Switch Statement](javascript/matching-multiple-values-in-a-switch-statement.md)
221222
- [Numbers Are Empty](javascript/numbers-are-empty.md)
222223
- [Object Initialization With Shorthand Property Names](javascript/object-initialization-with-shorthand-property-names.md)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Install The Latest Version Of Node With Nvm
2+
3+
[Nvm](https://github.com/creationix/nvm), the Node Version Manager, is a
4+
great way to manage multiple versions of Node.js on a machine. Run the
5+
following command to get nvm to install the latest version of Node.js for
6+
you.
7+
8+
```bash
9+
$ nvm install node --reinstall-packages-from=node
10+
```
11+
12+
[source](https://bytearcher.com/articles/ways-to-get-the-latest-node.js-version-on-a-mac/)

0 commit comments

Comments
 (0)