create-react-appができない事例があったので書き残します。
実行すると下記のように出ました。
1 2 3 4 5 6 7 8 9 10 |
You are running `create-react-app` 4.0.0, which is behind the latest release (4.0.1). 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 The latest instructions for creating a new app can be found here: https://create-react-app.dev/docs/getting-started/ |
その後上記エラー文からの誘導で公式ドキュメントへ。
僕の場合は下記を実行し、再度CRAを実行する事で解決しました。
1 |
yarn global remove create-react-app |