개발/React

[React] Create-React-App 에러 해결

ENFP Jake 2022. 3. 8. 01:13
728x90
반응형

 

# Create React App 에러 해결

 

 

- React를 사용해서 개발 할 때 npx create-react-app을  사용해서 프로젝트를 생성한다. 그런데 아래와 같은 메세지와 함께 생성이 실패하는 경우가 있다

# You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0).
# We no longer support global installation of Create React App.

 

- 문제는 위의 문제가 발생한 후에 보여주는 도움말이 아래와 같은데, 아래의 방법으로 create-react-app을 삭제해도 문제가 해결 되지 않는다

npm uninstall -g create-react-app
# OR
yarn global remove create-react-app

 

- 이 문제는 다음의 방법으로 해결할 수 있다

npx create-react-app@latest project-name --template typescript

 

 

728x90
반응형