create-react-app2 CRA로 React 설치할 때 create-react-app 버전 이슈 CRA(create-react-app)을 사용해서 React 어플리케이션 개발을 setup할 때, 아래 명령어를 통해서 설치할 수 있다. npx create-react-app [--template ] 어느 때와 다르지 않게 명령어를 실행했는데, 다음과 같은 에러가 발생했다. 써있는대로 create-react-app 를 삭제하려고 아래 명령어를 실행했다. npm uninstall -g create-react-app # or yarn global remove create-react-app 그런데 삭제가 되지 않고, 발생했던 에러가 그대로 발생했다. 이곳 저곳 찾아보니 직접 디렉토리를 삭제하라고해서 which create-react-app을 찾아봤으나 create-react-app not found 가 리턴됐.. 2022. 2. 21. [React] create-react-app 시, yarn의 unexpected error occurred 해결 create-react-app 명령어를 실행할 때, yarn으로 패키지를 설치하는 데, 아래와 같은 에러가 발생했다. error An unexpected error occurred: "https://registry.yarnpkg.com/react: unable to verify the first certificate". 해당 문제는 SSL 문제로 해결방법은 아래와 같다. yarn config set "strict-ssl" false npm에서도 동일한 에러가 발생한다면 아래와 같이 진행 npm config set strict-ssl false 2020. 3. 3. 이전 1 다음