-
[final project] typescript를 이용한 react 프로젝트 설치 시 에러error handling 2022. 4. 20. 11:44반응형
README.md 파일만 덩그러니 있는 프로젝트 폴더를 clone해서 열었고,
client 부분은 https://any-ting.tistory.com/93 을 참고해서 진행하니 react-app의 버전문제라고 에러가 떠서
You are running `create-react-app` 4.0.2, which is behind the latest release (5.0.1). We no longer support global installation of Create React App. Please remove any global installs with one of the following commands: - npm uninstall -g create-react-app - yarn global remove create-react-app The latest instructions for creating a new app can be found here: https://create-react-app.dev/docs/getting-started/
위의 메세지처럼 삭제하고
npm uninstall -g create-react-app
하지만 삭제 후 다시 전역 설치를 해보아도 안 되더라고요.
그래도 안 되는 분들은 아래를 해보시면 해결이 됩니다!
1. npm uninstall -g create-react-app 2. npm add create-react-app 3. npx create-react-app myapp
반응형'error handling' 카테고리의 다른 글
[final project] typescript & typeorm / isAuthorized import 에러 (0) 2022.04.22 [final project] client / server 초기 개발 환경 세팅 에러(typeORM) (0) 2022.04.21 배포 단계에서 발견한 에러(This XML file does not appear...) (0) 2022.04.18 [ERROR] You are running `create-react-app` 4.0.3, which is behind the latest release (0) 2022.03.25 Headers에서 Content-Type과 Accept의 차이(Feat. OAuth 2.0) (0) 2022.03.19