Skip to content

Commit 7dd1dfd

Browse files
committed
Update scripts of Node.js installation
1 parent 0eff15e commit 7dd1dfd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/3-web-servers/02-node-js/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ VS Code の**コマンド パレット**は、現在 VS Code 上で使用でき
4444

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

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

4949
```shell
50-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
50+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
5151
```
5252

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

6161
```shell
6262
$ nvm -v
63-
0.39.2
63+
0.39.3
6464
```
6565

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

8080
```shell
8181
$ node -v
82-
v18.12.0
82+
v18.16.0
8383
```
8484

8585
<Tabs groupId="os">

0 commit comments

Comments
 (0)