create-react-app가 안 될 때...

1853 단어 Reactnpm잘못tech
며칠 전 크레이트-react-app를 이용해 리액트와 타입을 만들려던 프로젝트에 오류가 발생해 만들 수 없어 해결책을 정리했다.
조사해 보니 이 실수 외에도 각양각색의 실수가 있었다.
요즘은 리액트를 쓰는 사람이 많다고 생각해요. 누군가를 도울 수 있다면 글로 투고하세요.이 오류가 자주 나올지 모르겠어요.

이벤트


일단 평소처럼 프로젝트를 해야 돼요.
를 입력합니다.그리고 나서
$ npx create-react-app sample-app --template typescript
의 경고문을 보냈다.나는 영어를 잘 못해서 뜻을 생략했다.
어쨌든 현금 문제로 분쟁을 일으킨 것 같아요.
You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0).
을 입력했는데 오류가 발생했습니다.
$ npx clear-npx-cache 
어쨌든 인터넷에서 찾아볼 좋은 글이 있어요.
참고여기.의 글에서 해결 방법을 알려드립니다.
문장에도 상술한 명령이 있는데 맥OS에서 다음과 같은 명령을 사용한다.
Windows인 분들은 기사를 보세요.
npm does not support Node.js v14.7.0
You should probably upgrade to a newer version of node as we
can't make any promises that npm will work with this version.
You can find the latest version at https://nodejs.org/
Need to install the following packages:
  clear-npx-cache
현재 캐시를 모두 제거합니다.
그리고 나서
$ rm -rf ~/.npm/_npx
명령을 입력한 후
$ npx create-react-app sample-app --template typescript
.
요약, Windowsnpm-cachemacOS에서 제거~/.npm/_npx하면 캐시가 사라집니다.
그게 다야.
나는 지금부터 기사를 쓰고 싶다.

참고 자료


https://exerror.com/you-are-running-create-react-app-4-0-3-which-is-behind-the-latest-release-5-0-0/

좋은 웹페이지 즐겨찾기