Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ES6
- 모듈 배포하기
- 토이 프로젝트
- 우아한테크캠프
- 러닝 자바스크립트
- 우아한테크캠프 4기
- 자바스크립트 객체
- 프로그래머스
- html
- 자바스크립트
- 함수
- 네이버 테크 콘서트
- Hello Coding HTML5+CSS3
- AWS
- 코드스쿼드
- 개인 프로젝트
- 리액트
- 회고의 회고
- 우아한테크코스
- 인사이드 자바스크립트
- 자바
- CSS
- 토이프로젝트
- 알고리즘
- npm
- express
- toast
- 레인지 슬라이더
- 우아한형제들
- 주간 회고
Archives
- Today
- Total
블로그
[리액트] npx create-react-app 에러, A template was not provided. This is likely because you're using an outdated version of create-react-app.Please note that global installs of create-react-app are no longer supported. 본문
트러블슈팅
[리액트] npx create-react-app 에러, A template was not provided. This is likely because you're using an outdated version of create-react-app.Please note that global installs of create-react-app are no longer supported.
wooluck 2020. 1. 2. 19:42문제
VS code에서 react 템플릿 세팅을 위해 터미널에 npx create-react-app를 입력했더니 아래의 문구가 나왔다.
A template was not provided. This is likely because you're using an outdated version of create-react-app.
Please note that global installs of create-react-app are no longer supported.
템플릿이 제공되지 않았고 create-react-app는 글로벌 인스톨이 더 이상 지원되지 않는다고 한다.
패키지 설치는 되었지만 세팅이 되지 않은 빈껍데기 상태.
기존에 설치한 글로벌 모듈 체크를 위해 npm list -g 를 입력했고 react-create-app이 설치되어 있음을 확인하였다.
해결
npm uninstall -g create-react-app
글로벌 모듈로 설치된 create-react-app을 삭제하였다.
npx create-react-app
이후 다시 create-react-app을 입력하여 해결!
'트러블슈팅' 카테고리의 다른 글
java.lang.IllegalArgumentException: Invalid character found in method name. HTTP method names must be tokens (0) | 2020.03.04 |
---|---|
[익스프레스] import express from "express"; SyntaxError: Unexpected identifier (0) | 2020.02.28 |
document.location.search.includes 익스플로러(IE) 오류 (0) | 2019.12.26 |
Windows7 무한 업데이트, 업데이트 구성 실패 (0) | 2019.04.05 |
비주얼 스튜디오 코드 세팅 (0) | 2019.02.21 |
Comments