File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/3-web-servers/03-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 @@ -13,10 +13,10 @@ import debuggingVideo from "./debugging.mp4";
1313
1414Node.js をインストールする方法は様々ですが、現在は [ nvm] ( https://github.com/nvm-sh/nvm ) と呼ばれるツールが用いられることが多いようです。
1515
16- まずは、[ nvm のウェブサイトの ` Install & Update Script ` セクション] ( https://github.com/nvm-sh/nvm#install--update-script ) に書かれているスクリプトを実行しましょう。2023 年 11 月現在では、次の通りです。
16+ まずは、[ nvm のウェブサイトの ` Install & Update Script ` セクション] ( https://github.com/nvm-sh/nvm#install--update-script ) に書かれているスクリプトを実行しましょう。2024 年 5 月現在では、次の通りです。
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 のインストールが成功していることを確認するため、次のコマンドを実行します。
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" >
You can’t perform that action at this time.
0 commit comments