0
1

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.

React環境設定メモ

Last updated at Posted at 2021-11-02

#環境
Windows 10

#前提
以下がインストール済みであること。
・VisualStudioCode
・node.js
・npm
※npmはNode.jsをインストールすると同時にインストールされる。

#手順

####1.ターミナルを開く

####2.nodeとnpmのバージョン確認

コマンド
node -v 
npm -v 

####3.Reactアプリケーションジェネレータcreate-react-appのインストール

コマンド
npm install -g create-react-app

####4.Reactアプリケーション用のフォルダを作成
例:デスクトップにreactフォルダを作成する場合

コマンド
mkdire C:\Users\username\Desktop\react

####5.作成したフォルダに移動

コマンド
cd C:\Users\username\Desktop\react

####6.アプリケーション作成
例:アプリケーション名「reactTest」を作成する場合

コマンド
create-react-app reactTest

####7.実行

コマンド
cd reactTest
npm start
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?