0
0

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) とらゼミ03 メモ

Last updated at Posted at 2021-05-22

環境構築

  • node ver8.10以上
  • npm ver5.6以上
  • homebrew,nodebrewのインストールが必要。

nodebrew(node,npmも)のインストール

  • nodebrewをhomebrewを使ってインストール。
> brew install nodebrew  
  • nodebrewのバージョン情報確認。
> nodebrew -v 
  • 利用できるnodebrewnのバージョンを確認。
> nodebrew ls-remote
  • nodebrewの安定バージョンのインストール。
> nodebrew install stable 
  • 現在インストールされているバージョンの確認。
> nodebrew ls
  • 使用するバージョンを指定。
> nodebrew use (バージョン)
  • PATHの記述
> echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.zprofile

これでnodeとnpmもインストールされる。

> node -v
> npm -v

バージョン情報が出れば成功。

  • 環境構築コマンド入力。
> npx create-react-app-(ファイル名)

実際に動かしてみる。

  • 本番環境のディレクトリを作成、このタイミングでバンドルやトランスパイルも行う。
> npm run build
  • webページの立ち上げ。
> npm start
  • babelやwebpackの設定を変更したい場合のみ使用。
> npm run eject

ディレクトリの説明

  • src: コンポーネントを作るjsファイルがある。
  • build: 本番環境用にバンドルされたディレクトリ。
  • public: htmlファイルや設定ファイルがある。

バンドル: srcとpublicのファイルを一つのファイルに纏める。

何故 create-react-appで環境構築するのか?

トランスパイラのbabelやパンドラーの設定はとてもムズイらしいので、取り敢えずReactを使ってみたいと言う人はcreate-react-appで構築した方が良い。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?