File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/3-web-servers/02-node-js Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ VS Code の**コマンド パレット**は、現在 VS Code 上で使用でき
4444
4545Node.js をインストールする方法は様々ですが、現在は [ nvm] ( https://github.com/nvm-sh/nvm ) と呼ばれるツールが用いられることが多いようです。
4646
47- まずは、[ nvm のウェブサイトの ` Install & Update Script ` セクション] ( https://github.com/nvm-sh/nvm#install--update-script ) に書かれているスクリプトを実行しましょう。2022 年 10 月現在では、次の通りです。
47+ まずは、[ nvm のウェブサイトの ` Install & Update Script ` セクション] ( https://github.com/nvm-sh/nvm#install--update-script ) に書かれているスクリプトを実行しましょう。2023 年 5 月現在では、次の通りです。
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 のインストールが成功していることを確認するため、次のコマンドを実行します。
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 " >
You can’t perform that action at this time.
0 commit comments