초급의 끄적거림

[React] npx create-react-app 가 실행되지 않을 때 본문

프론트엔드/React

[React] npx create-react-app 가 실행되지 않을 때

codingD 2022. 5. 10. 21:34

오류내용

npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/creat-react-app - Not found
npm ERR! 404
npm ERR! 404 'creat-react-app@latest' is not in this registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:

 

진행방법

  • 아래 명령으로 가능하다는 글을 참고하였으나 반응이 없었음
npm config set registry http://registry.npmjs.org

 

해결방법

  • 리액트 제거 후 재설치 진행
npm uninstall -g create-react-app (리액트 앱 제거)
npm install -g create-react-app (리액트 앱 재설치)
npx create-react-app [app-name] (리액트 앱 실행)
Comments