[React] You are running `create-react-app` 4.0.0, which is behind the latest release (4.0.1). 이슈 해결하는 방법

hoonie·2020년 11월 24일
4
post-thumbnail

안녕하세요. 이번시간에는 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초정도 당황했습니다.

어떻게 해야하지 하고 찾아보다가 해결 방법을 발견하였는데, 해결법은 매우 간단합니다.

  1. npm uninstall -g create-react-app 를 실행
  2. npm add create-react-app 을 실행
  3. 다시 npx create-react-app myapp 실행

이렇게 하면 매우 잘 됩니다.

1개의 댓글

comment-user-thumbnail
2021년 3월 21일

와우 감사합니다

답글 달기