1
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.

npx create-react-appでディレクトリが作れなかった件

Posted at

いつものようにnpx create-react-app myappを実行しようとしたところ、以下のエラーが出てきてしまいました。

You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0).

We no longer support global installation of Create React App.

Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app

言われた通り、

npm uninstall -g create-react-app

を実行しても全く変わらず。というかすでにアンインストールされています。yarnもそもそもインストールしていません。

続いてよく出てくるキャッシュをクリアする方法も試しました。下記をターミナルで実行するとできます。。
もしかしたらこれで直る方もいらっしゃるのではないでしょうか?私はダメでした.....。

npx clear-npx-cache

結論

下記を実行したらできました!

npm audit fix --force
1
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
1
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?