0
0

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つかったらcreate-react-appができなかった

Last updated at Posted at 2022-05-04

version

入力:node -v
v16.14.0
入力:npm -v
8.3.1

何があったか

夏のエンジニアインターンに向け、開発物を作ろうとReactを使おうとしたところ

入力
npx create-react-app my-app
出力
 'create-react-app' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。

と出力され実行できなかった。

調べてみた

create-react-appを使用するには、node.jsやらnpmのversionが一定以上ないとダメっぽいけど、バージョンの要件は満たしていた。

試したこと

パッケージがぐちゃぐちゃしてしまったのかと思い、一度node.jsかnpmかnpxのアンインストールを試みた。(何をしたか忘れてしまいました)
その後create-react-appを使うも、うまく実行されなかったが、

入力
npm init react-app my-app

を実行すると、Reactの開発環境を立てることができた。

おわりに

create-react-appを実行することができていないので、根本的な解決には成っていないが、npm init react-app my-appすることで、現状打破が可能だとわかった。
次は、node.jsを再インストールして、最新バージョンでcreate-react-appを試してみようと思う。
あとは、記事を書くまでに解決手順を忘れてしまうので、詰まった段階から記事を書き始めることで、うまく解決方法を記していければと感じた。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?