いつものように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