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 の環境構築

Last updated at Posted at 2020-04-05

#目的
macOS上に React の開発環境を構築する

#環境情報
##OSバージョン
macOS Catalina(10.15.4)

#node.js & npm を install
以下にアクセスして ダウンロード & インストールを行う
※catalinaでは v12 は使用できないため v13 以上を使用すること
https://nodejs.org/ja/
スクリーンショット 2020-03-09 13.37.21.png

npm install 時に permisson denied となってしまうため npm のデフォルトのディレクトリの権限を変更する

sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}

#[デモ]雛形を生成して起動確認をする
雛形を生成

npx create-react-app my-app

my-app を起動

cd ./my_app
npm start

以下の画面が表示されれば成功
スクリーンショット 2020-03-10 11.17.57.png

#Chrome に React Devtools を追加する
ブラウザで React のコンポーネントツリーを調べることができる、 React Devtools を、以下のサイトから Chrome に追加する
https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=ja
スクリーンショット 2020-03-10 15.57.20.png

「file://」のURLにも対応させるため chrome の 「設定」 => 「拡張機能」 => 「React Developer Tools の 詳細」 を選択し
「ファイルの URL へのアクセスを許可する」 を有効にする
スクリーンショット 2020-03-10 16.05.28.png

Chrome の Devtools に 「Component」, 「Profiler」 タブが追加される
スクリーンショット 2020-03-10 16.20.24.png

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?