리액트
-
[React] create-react-app (CRA) 에러 해결 : no longer support global installation of Create React App.프론트엔드 2021. 12. 27. 02:21
프로젝트 폴더에서 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. Please remove any global installs with one of the following commands: - npm uninstall -g create-react-app - yarn global remove create-react-app 1. 일단 에러메세지에 나온 대로 npm u..