학습 기록 (Learning Logs)/커뮤니티 웹 프로젝트
리액트 설치하기
devWonny
2022. 3. 7. 07:12
[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