React JS

npx create-react-app 오류 해결 방법

수연 (Suyeon) 2023. 11. 5. 22:24
반응형

 

오류 해결 방법

 

1. create-react-app을 삭제해줍니다.

npm uninstall -g create-react-app

 

 

 

2. create-react-app을 재설치합니다.

npm install -g create-react-app

 

 

 

3. create-react-app을 재실행해줍니다.

npx create-react-app 폴더명

 

 

 

이러면 성공적으로 react를 설치할 수 있습니다!

728x90

'React JS' 카테고리의 다른 글

react-hook-form로 회원가입 하기  (0) 2023.11.11
Objects are not valid as a React child 에러 처리  (0) 2023.01.12
채팅 중복 없이 저장하기  (0) 2023.01.07
채팅창 만들기 React  (0) 2023.01.02
react-live-clock 사용하기  (0) 2023.01.01