Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installing Node.js: update nvm version #28882

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions foundations/javascript_basics/installing_nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

### Installing NVM

<details markdown="block">

Check failure on line 20 in foundations/javascript_basics/installing_nodejs.md

View workflow job for this annotation

GitHub Actions / Lint lesson files

Multiline HTML tags should be surrounded by blank lines or code block delimiters

foundations/javascript_basics/installing_nodejs.md:20 TOP005/blanks-around-multiline-html-tags Multiline HTML tags should be surrounded by blank lines or code block delimiters [Expected a blank line or a code block delimiter (```) after the tag] [Context: "<details markdown="block">"] https://github.com/TheOdinProject/curriculum/blob/main/markdownlint/docs/TOP005.md

<summary class="dropDown-header">Installation on Linux</summary>

Expand All @@ -40,7 +40,7 @@
Run this command to install `nvm`:

```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
```

#### Step 2: Initializing NVM
Expand All @@ -62,7 +62,7 @@

</details>

<details markdown="block">

Check failure on line 65 in foundations/javascript_basics/installing_nodejs.md

View workflow job for this annotation

GitHub Actions / Lint lesson files

Multiline HTML tags should be surrounded by blank lines or code block delimiters

foundations/javascript_basics/installing_nodejs.md:65 TOP005/blanks-around-multiline-html-tags Multiline HTML tags should be surrounded by blank lines or code block delimiters [Expected a blank line or a code block delimiter (```) after the tag] [Context: "<details markdown="block">"] https://github.com/TheOdinProject/curriculum/blob/main/markdownlint/docs/TOP005.md

<summary class="dropDown-header">Installation on macOS</summary>

Expand All @@ -75,7 +75,7 @@
```

```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
```

Restart your terminal, or copy and paste the following into your terminal and press <kbd>Enter</kbd>:
Expand Down Expand Up @@ -141,3 +141,3 @@
This section contains helpful links to related content. It isn't required, so consider it supplemental.

- Check out this 4 minute video by Programming with Mosh [What is NodeJS?](https://www.youtube.com/watch?v=uVwtVBpw7RQ)
Loading