Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node.jsのインストール方法をアップデート #831

Merged
merged 2 commits into from
Sep 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/3-web-servers/03-node-js/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ xcode-select --install

<video src={installCommandLineDeveloperToolsVideo} controls />

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

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

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

```shell
$ nvm -v
0.39.7
0.40.1
```

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

```shell
$ node -v
v20.12.2
v20.17.0
```

<Tabs groupId="os">
Expand Down