일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ||
- 과정평가형
- group by
- Bootstrap
- oracle
- sql developer
- 부트스트랩
- rownum
- alias
- 모조칼럼
- HTML
- 이클립스
- 성적프로그램
- 제약조건
- JavaScript
- 한글 인코딩
- 답변형 게시판
- SQL
- github
- git
- tomcat
- CRUD
- distinct
- HTTP Status 500
- HTTP Status 404
- JSP
- Oracle DB
- Oracle SQL
- jQuery
- Java
Archives
초급의 끄적거림
[React] npx create-react-app 가 실행되지 않을 때 본문
오류내용
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