# 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 ya..