메모장
[cra] npx create-react-app error 본문
npx create-react-app를 사용하여 리액트 앱을 생성할 때 아래와 같은 에러가 발생합니다.
메시지에서 제공하는 npm uninstall -g create-react-app 또는 yarn global remove create-react-app을 입력한 후에도 결과는 같기 때문에 에러에 대한 해결방안은 다음과 같습니다.
첫 번째 방법은 @latest와 함께 실행합니다.
npx create-react-app@latest react-app
두 번째 방법은 패키지를 재설치 후 실행합니다.
npm uninstall -g create-react-app
npm install -g create-react-app
npx create-react-app react-app
세 번째 방법은 cache를 삭제 후 실행합니다.
npm uninstall -g create-react-app
npx clear-npx-cache
npx create-react-app my-app
'개발' 카테고리의 다른 글
cra + yarn berry 환경에서 vscode가 eslint 구문 에러를 표시하지 않을 때 (0) | 2022.12.17 |
---|---|
cra + typescript + yarn berry 세팅 (0) | 2022.12.16 |
[Github] Organizations에서 기존 레포지토리 가져오기 (0) | 2022.08.07 |