Skip to content

Commit e64b4e9

Browse files
authored
Node.jsのインストール方法をアップデート (#831)
1 parent e034e4d commit e64b4e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/3-web-servers/03-node-js/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ xcode-select --install
2222

2323
<video src={installCommandLineDeveloperToolsVideo} controls />
2424

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

2727
```shell
28-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
28+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
2929
```
3030

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

3939
```shell
4040
$ nvm -v
41-
0.39.7
41+
0.40.1
4242
```
4343

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

5858
```shell
5959
$ node -v
60-
v20.12.2
60+
v20.17.0
6161
```
6262

6363
<Tabs groupId="os">

0 commit comments

Comments
 (0)