React
You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0) 오류
제이아보(JahvoTrust)
2023. 1. 28. 16:14
반응형
오랜만에 리액트 프로젝트폴더를 생성하려고 하니 이런 에러메시지가 발생하면서, 템플릿이 만들어지지 않는다.
You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0)
주저리 주저리..... 급 뇌정지...왜그러지...왜그러.....지...
인생은 항상 예상했던데로 흘러가지 않는다.
구글링을 해보니 이미 나의 선배님들이 솔루션들을 적어놓으셨다.
- npm uninstall -g create-react-app
- npm add create-react-app
그리고 새로 만든 폴더로 간다음, 아래 명령을 실행 시킨다.
- npx create-react-app .
We suggest that you begin by typing:
cd C:\src\my-social-login
npm start
Happy hacking!
반가운 문구가 나오면서 템플릿 프로젝트가 생성되었다.
개발 너무 오래 쉬지 말자는 교훈을 이번에도 느낀다...흐흐...
반응형