2
8

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 2021-10-21

#はじめに
この間、会社の先輩からReactが面白い!って話を聞いたので
自分用にまとめてみました。
#目次
1.環境
2.Node.jsのインストール
3.Reactのインストール
4.Reactのアプリを構築しよう!
5.まとめ
#1.環境
・Windows10
・Node.js
・React
#2.Node.jsのインストール
Reactを使ったアプリを開発する場合、Npde.jsとnpmが必須になります。
Node.jsダウンロードサイト

念のため、npmのアップデートをしておきましょう。

#3.Reactのインストール
npmを使ってReactをインストールしましょう。

#4.Reactのアプリを構築しよう
Reactのアプリ構築にはnpxコマンドを使います。npmのバージョン5.2.0以降では自動でダウンロードされます。
もしない場合は手動でインストールしましょう。

準備が出来たらReactのアプリを構築しましょう。
npx create-react-app アプリ名
アプリの構築が完了したらサーバを起動してみましょう。

npm start```
自動でブラウザが起動し次のような画面が出力されていればOK
![rea.PNG.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/605371/6f83fdd9-a0d7-629e-bfba-b7e743a36443.png)
#5.まとめ
Reactは数あるフロントエンドフレームワークの1つです。HTMLなどのフロント言語が苦手だけど、JavaScriptは得意だよ!という方やNode.jsを使った経験のある人にはおすすめできます!

次回は、React-Router-domを使ったReactのルーティングについてまとめていこうと思います。


2
8
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
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?