12
9

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.

create-react-appコマンドを利用して、reactをインストールする方法

Last updated at Posted at 2019-04-20

1.Node.jsをインストールする

まずはnode.jsがインストールされているか確認してください。

$ node -v

バージョンが出ればOK!
node.jsをインストールしていない人は下記の記事を参考にしてインストールしてください

Node.jsのインストール

2.npmをインストールする

Node.jsがインストールできたら、npmをインストールをする。

$ npm -v

バージョンが出れば、ちゃんとnpmがインストールされています。
インストールされていない人は先程の記事を参考にnpmをインストールしてみてください!!
npmのインストール

3.create-react-appコマンドを使えるようにする

$ npm install -g create-react-app

もし、permission deniedというエラーが出た方は下記のコマンドを実行してください!!

$ sudo npm install -g create-react-app

4.create-react-appコマンドでアプリ作成

$ create-react-app 任意のアプリケーション名

もし、permission deniedというエラーが出た方は先程と同様sudoを前につけて実行してください。

5.サーバーを立ち上げる

$ cd 任意のアプリケーション名
$ npm start

http://localhost:3000 にアクセスする。

スクリーンショット 2019-04-20 22.21.41.png

できた!!

12
9
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
12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?