Skip to content

Commit 2128ae4

Browse files
authored
Node.jsのインストール方法の説明をアップデート (#731)
1 parent 021293d commit 2128ae4

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
@@ -13,10 +13,10 @@ import debuggingVideo from "./debugging.mp4";
1313

1414
Node.js をインストールする方法は様々ですが、現在は [nvm](https://github.com/nvm-sh/nvm) と呼ばれるツールが用いられることが多いようです。
1515

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

1818
```shell
19-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
19+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
2020
```
2121

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

3030
```shell
3131
$ nvm -v
32-
0.39.5
32+
0.39.7
3333
```
3434

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

4949
```shell
5050
$ node -v
51-
v20.10.0
51+
v20.12.2
5252
```
5353

5454
<Tabs groupId="os">

0 commit comments

Comments
 (0)