6
9

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.

2021年版・爆速Reactプロジェクトの作り方(create-react-appを使用)

Last updated at Posted at 2019-05-13

爆速でReact(React.js)のプロジェクトを作成し、とりあえず動かす方法を書きます。

環境

  • macOS Big Sur 11.2.3

Node.jsのインストール

公式サイトからダウンロードしたインストーラを実行してください。
本記事ではversion 14.16.1を入れました。

Yarnのインストール

公式サイトもしくは

# npm 経由でyarnをインストール
npm install -g yarn
# yarnのバージョンを確認
yarn -v

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

プロジェクトを作りたいディレクトリに移動し、ターミナルで以下のコマンドを実行します。my-appは作成するプロジェクト名です。

yarn create react-app my-app
#プロジェクトディレクトリへ移動
cd my-app

こんな感じのファイルが出来てるかと思います。
スクリーンショット 2019-05-13 16.34.48.png

ローカルサーバー起動

プロジェクトディレクトリで以下のコマンドを実行します。

yarn start

yarn startでローカルサーバーが起動し、ブラウザで自動的にページが表示されるかと思います。もし表示されなければ、ブラウザから
http://localhost:3000/
にアクセスしてください。

ローカルサーバー停止

ターミナルからCtrl+Cでサーバーを終了します。

ビルド

yarn buildで公開用のファイル群がbuildディレクトリ直下に作成されます。

yarn build

補足

yarnって何?

こちらの記事参照。
https://ics.media/entry/19384/
基本的にはnpmと似たようなNodeのパッケージ管理ツールですが、インストールが高速だったりします。コマンドはほとんどnpmと変わりません。

ソース:
https://create-react-app.dev/docs/getting-started
https://ja.reactjs.org/docs/create-a-new-react-app.html#create-react-app

6
9
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
6
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?