본문 바로가기

프로젝트/커뮤니티 웹 프로젝트

리액트 설치하기

오류가 발생한다

https://velog.io/@gygy/error-create-react-app-%EC%82%AD%EC%A0%9C-%ED%9B%84-%EC%B5%9C%EC%8B%A0%EB%B2%84%EC%A0%84%EC%9C%BC%EB%A1%9C-%EC%84%A4%EC%B9%98%EC%95%88%EB%90%A0%EB%95%8C-Need-to-install-the-following-packages-create-react-appOk-to-proceed-y

 

[error] create-react-app 삭제 후 최신버전으로 설치안될때 (Need to install the following packages: create-react-a

create-react-app이 더이상 지원하지 않는버전이니 삭제하고 다시 설치하라는 메시지가 나왔다.npm uninstall -g create-react-app으로 삭제한 다음최신 버전으로 진행하기 위해 npx create-react-app my-app으로 다

velog.io

 

 

해결방법

npm uninstall -g create-react-app
npx create-react-app@latest 만들프로젝트이름
PS D:\> cd .\만들프로젝트이름\PS D:\만들프로젝트이름> npm start