3월 16일 (수) [토이프로젝트] react 설치 오류

남이섬·2022년 3월 16일
0
post-custom-banner

npx create-react-app myapp 설치 오류 해결

에러문구

You are running `create-react-app` 4.0.3, which is behind the latest rel
ease (5.0.0).

오류해석

최신 버전(5.0.0)보다 뒤처진 'create-react-app' 4.0.3을 실행하고 있습니다.

해결

설치된 react-app을 제거하고 새로 설치

1. npm uninstall -g create-react-app (리액트 앱 제거)
2. npm install -g create-react-app (리액트 앱 재설치) 또는 npm add create-react-app
3. npx create-react-app app-name (리액트 앱 실행)

profile
즐겁게 살자

0개의 댓글