You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1). We no longer support global installation of Create React App.

Juyeon Lee·2022년 10월 5일
0

에러

목록 보기
12/31

리액트 앱 만드려고 하는데 갑자기 이런 오류가 떴다.

You are running create-react-app 5.0.0, which is behind the latest release (5.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

알려준대로 해결을 시도해 보았다.

  1. 글로벌 설치를 제거하기 위해 다음 중 하나의 명령어를 실행한다.

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

  2. 글로벌 설치를 제거한 후, 다음 명령어로 create-react-app을 다시 설치한다.

    npm i create-react-app

  3. 다시 원래의 방법대로 리액트 앱을 생성한다.

    npx create-react-app my-app

이렇게 앱을 다시 만들어주니 작동이 잘 되었다!

0개의 댓글