본문으로 바로가기

  

 

이번 글에서는 You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0).  에러 해결 방법에 대하여 알아보겠습니다.

 

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

 

 

위의 안내 문구에 따라 다음과 같이 명령어를 실행하였지만, 아래와 같은 에러가 발생해서 진행이 되지 않았습니다.

npm uninstall -g create-react-app
yarn global remove create-react-app

 

 

그래서 해결 방법을 고민하다가, @latest를 붙여 npm을 최신 버전으로 업그레이드해서 명령어를 입력해서 실행하니 프로젝트가 정상적으로 설치되었습니다.

npx create-react-app@latest my-app