3
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 1 year has passed since last update.

環境構築が済んだPCでサクッとReactを開始する方法

Last updated at Posted at 2022-04-11

reactのコマンドとか、フォルダのパス関係とか忘れがちなのでまとめてみた。

前提

npm,babel等の環境構築は済んでいる。
windows環境。


プロジェクトの開始

コマンドプロンプトで作業したいフォルダまで移動して、以下のコマンドを入力する

npx create-react-app プロジェクト名

上記で作成されたプロジェクトを動かしてみる

cd プロジェクト名
npm start

プロジェクトの編集

①作成されたプロジェクトのsrc以下のフォルダからすべてのファイルを削除する。(↓の画像で選択しているファイルをすべて削除する。)
image.png

②削除後、srcフォルダ以下にApp.jsとindex.jsを作成しなおして、reactの定型文を記載する。
image.png

App.js
function App(){
    return(

    );
};

export default App;
index.js
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';

ReactDOM.render(
        <App />,
        document.getElementById("root")
);

③App.jsのreturnの中に表示させたい内容を入力する
image.png

App.js
function App(){
    return(
    <h1>hello,world!</h1>//ここに入力
    );
};

export default App;

以上で、reactをとりあえず動かすことができます。
あとは、自分の好きなように編集すれば良いです。


create-react-appしてからプロジェクトを作成する理由

reactは複数のモジュールで動いている。create-react-appすることで、必要なモジュールを自動でインストールしてくれる。
create-react-appしないと、必要なモジュールを自分で記述する必要があり「とりあえずreactを動かしてみる」のような場合はハードルが高い。
そのため、
create-react-app→デフォルトの不要なファイルを削除→自分の作りたいものを作成
という順序でreactを作成した。

3
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
3
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?