Skip to content

Commit

Permalink
Xcodeのインストールの動画をNode.jsのセクションに追加 (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
chvmvd authored May 3, 2024
1 parent 873ed97 commit a7d4d8b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
9 changes: 9 additions & 0 deletions docs/3-web-servers/03-node-js/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: はじめての Node.js
---

import installCommandLineDeveloperToolsVideo from "./install-command-line-developer-tools.mp4";
import installNvmInWslVideo from "./install-nvm-in-wsl.mp4";
import installNvmInMacVideo from "./install-nvm-in-mac.mp4";
import openFolderInWslVideo from "./open-folder-in-wsl.mp4";
Expand All @@ -13,6 +14,14 @@ import debuggingVideo from "./debugging.mp4";

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

macOS の場合は、先に次のコマンドを実行してコマンドラインデベロッパツールをインストールする必要があります。

```shell
xcode-select --install
```

<video src={installCommandLineDeveloperToolsVideo} controls />

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

```shell
Expand Down
Binary file not shown.
13 changes: 1 addition & 12 deletions docs/3-web-servers/10-git-github-init/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
title: Git と GitHub のセットアップ
---

import installCommandLineDeveloperToolsVideo from "./install-command-line-developer-tools.mp4";
import registerGitHubVideo from "./register-github.mp4";
import setupGitVideo from "./setup-git.mp4";
import addSshKeyVideo from "./add-ssh-key.mp4";
Expand All @@ -15,17 +14,7 @@ import addSshKeyVideo from "./add-ssh-key.mp4";

## Git のインストール

<Tabs groupId="os">
<TabItem value="mac" label="macOS">
macOS の場合は、コマンドラインデベロッパツールが必要な場合があります。

<video src={installCommandLineDeveloperToolsVideo} controls muted />

</TabItem>
<TabItem value="win" label="Windows (WSL)">
WSL を利用する場合は Git は標準搭載なので追加でインストールする必要はありません。
</TabItem>
</Tabs>
macOS と WSL のいずれも、Git は標準搭載なので追加でインストールする必要はありません。

## Git の拡張機能のインストール

Expand Down
Binary file not shown.

0 comments on commit a7d4d8b

Please sign in to comment.