안녕하세요. 이번시간에는 npx create-react-app 을 실행하려니까 발생하였던 오류에 대해 알아보겠습니다.
오늘 npx create-react-app을 실행하려니까 난데없이 이런 메세지가 떴습니다.
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/
이게 뭐지? 하고 10초정도 당황했습니다.
어떻게 해야하지 하고 찾아보다가 해결 방법을 발견하였는데, 해결법은 매우 간단합니다.
- npm uninstall -g create-react-app 를 실행
- npm add create-react-app 을 실행
- 다시 npx create-react-app myapp 실행
이렇게 하면 매우 잘 됩니다.
와우 감사합니다