반응형
CRA(create-react-app)을 사용해서 React 어플리케이션 개발을 setup할 때, 아래 명령어를 통해서 설치할 수 있다.
npx create-react-app <directory-name> [--template <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
가 리턴됐다.
stackoverflow를 통해서 찾은 해결방안은 npx
의 cache를 정리하는 것이다.
아래 명령어를 실행해서 npx의 cache를 정리하고, create-react-app을 다시 설치하면 정상적으로 설치된다.
npx clear-npx-cache
참고자료
npx create-react-app prompting to globally uninstall non-existent create-react-app package?
반응형
'IT > react' 카테고리의 다른 글
[번역][Next.js] Layout RFC (0) | 2022.07.29 |
---|---|
[react-query] useEffect에서 react-query의 useMutation을 사용할 때 dependencies 으로 인한 무한 요청 해결방법 (0) | 2022.07.13 |
Next.js에서 styled-component를 사용하기 위한 방법 (0) | 2021.12.06 |
react-router-dom v5, v6 비교 (1) | 2021.12.04 |
[React]내가 개발한 사이트의 보안점수 확인하는 방법 (0) | 2021.06.22 |
댓글