[react] create-react-app 오류

woo·2022년 4월 27일
0

기능 구현

목록 보기
7/17

새로운 react app을 만드려고 하니 버전이 낮다고 오류가 났다. 여러 방법을 시도했지만 내가 성공한 방법은 아래와 같다.😨

<오류메시지>
You are running create-react-app 4.0.3, which is behind the latest release (5.0.1).

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 -g create-react-app
npm add create-react-app@5.0.1
npx create-react-app project-name

app이 만들어지면 npm start를 실행하면 정상적으로 http://localhost:3000/ 페이지가 열린다!

기존에 있던 것을 지우고 npm install이 아닌 npm add로 현재 가장 최신버전인 5.0.1로 새로 깔았다.
여러 글을 참조해 다 시도해봤었는데 이 글에서 npm add가 나와있길래 했는데 됐다?! 아직 install과 add의 차이는 잘 모르겠다...🤔

profile
🌱 매일 성장하는 개발자

0개의 댓글