2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【React】環境構築 create-react-app

Posted at

はじめに

Windows環境でReactを初めて使用する場合の手順
以下2点は必須
・初期導入を容易に行えるcreate-react-appを用いる

Node.jsのインストール

Node.js公式サイトからNode.jsをインストール

https://nodejs.org/ja/
image.png

Chocolateyを使用してインストール

Chocolateyコマンドよりnodistをインストール
Chocolatey:Windows用パッケージ管理ソフトウェア

image.png

nodistのPathを通す

nodistはWindowsOSでNode.jsのバージョン管理を行うツールです。
上記を実行することでnodistのPathが通っているが、
nodist -v コマンド実行時に認識されないエラーが出る場合は、pathが通っているかを確認する。
※nodistのインストール後コマンドプロンプトを再起動しないと認識されない
image.png
image.png

nodistのインストール

nodist + (version)
image.png
次にyarnをインストールする
yarnはNode.jsのパッケージ管理を行う(他にnpmもあるが、npmよりインストールが速いなどメリットがある)
①Chocolateyでインストール
choco install yarn
②npmでインストール
npm install -g yarn
コマンドプロンプトを再起動してPathが通停ることを確認
image.png

create-react-appのインストール

create-react-appをnpmでインストール
npm install -g create-react-app

create-react-appでプロジェクト作成

作業フォルダに移動し以下コマンドを実行
create-react-app (プロジェクト名)
image.png

create-react-appの実行

作成したディレクトリに移動し、以下コマンドを実行
yarn start
以下の画面がでればOK
image.png

windowsSでのcreate-react-appを使用したプロジェクトの作成については以上です。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?