티스토리 뷰
반응형
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/
해결 방법
1. 우선 전역 설치된 리액트 앱을 삭제해준다.
npm uninstall -g create-react-app
2. npm으로 리액트를 다시 설치해준다.
npm add create-react-app
3. 해당 작업 폴더에서 npx로 다시 설치한다.
npx create-react-app (app name)
반응형
'React' 카테고리의 다른 글
[React] react-ga로 리액트와 구글 애널리틱스 연결하기 (0) | 2022.03.07 |
---|---|
[React] Slick Slider 사용하기 + TypeScript (0) | 2022.02.26 |
[React] 설치와 Client + Server 세팅 (0) | 2022.02.20 |
[React] class(클래스형) 컴포넌트 VS. functional(함수형) 컴포넌트 (0) | 2022.02.09 |
[React] onClick target - 자식 요소 클릭 이벤트 방지 (target, currentTarget 차이) (0) | 2021.12.13 |