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?

React : プロジェクト作成

Posted at

はじめに

最近Reactの学習を行っています。
そのため、プロジェクトを作成することが多いですが、意外と忘れがちなので作成方法を備忘録がわりに記載します。

手順

プロジェクトを作成したいディレクトリをカレントディレクトリにして、以下コマンドを実行します。

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

上記コマンドを実行すると、package.jsonというファイルが作成されます。このファイルはプロジェクト内のライブラリなどをインストールした際に情報が書き込まれていくファイルです。package.jsonこそがプロジェクトの核となるファイルといえます。そして、package,jsonのファイルがある階層をカレントディレクトリに設定して以下コマンドを実行していください。

npm start

これでlocalhostとしてwebアプリが実行されます。

エラーとして以下が出力されかもしれません。

Module not found: Error: Can't resolve 'web-vitals' in 'xxxx\src'

以下に解決方法が記載されています。

Module not found: Error: Can't resolve 'web-vitals' in '/app/src'

以下コマンドを実行すれば解決します。

npm install --save-dev web-vitals

要はweb-vitalsというライブラリをインストールしていないことが問題なのです。

0
1
2

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?