본문 바로가기

웹 개발/React

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

오랜만에 react 프로젝트를 시작하려고 npx create-react-app 명령어를 쳤더니 아래와 같은 오류가 뜬다. 

 

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

The latest instructions for creating a new app can be found here:
https://create-react-app.dev/docs/getting-started/

 

그래서 여기서 하란대로 npm uninstall이란 yarn remove도 다 했는데 똑같아서 구글링!!

 

npx 캐시 때문에 안되는거였나보다 

npx clear-npx-cache

이거 하고 다시 npx create-react-app을 하니까 잘 된다. 얄루!


References