Skip to content
Open
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
8 changes: 4 additions & 4 deletions docs/3-web-servers/03-node-js/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ xcode-select --install

<video src={installCommandLineDeveloperToolsVideo} controls />

まずは、[nvmのウェブサイトの`Install & Update Script`セクション](https://github.com/nvm-sh/nvm#install--update-script)に書かれているスクリプトを実行しましょう。2025年4月現在では、次の通りです。
まずは、[nvmのウェブサイトの`Install & Update Script`セクション](https://github.com/nvm-sh/nvm#install--update-script)に書かれているスクリプトを実行しましょう。2026年3月現在では、次の通りです。

```shell
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash
```

続いて、ターミナルアプリケーションを再起動してから、nvmのインストールが成功していることを確認するため、次のコマンドを実行します。
Expand All @@ -38,7 +38,7 @@ nvm -v

```shell
$ nvm -v
0.40.3
0.40.4
```

さらに、次のコマンドを実行して、Node.jsをインストールします。
Expand All @@ -57,7 +57,7 @@ node -v

```shell
$ node -v
v22.15.0
v24.14.0
```

<Tabs groupId="os">
Expand Down