npx create-react-app [project-name]
create-react-app 을 설치하는 명령어를 위와 같이 입력하고
해당 폴더로 들어가서 npm start를 입력하면 오류가 발생한다.
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 만 다시 만들고,
node.js도 재설치하다가 저 메시지가 걸려 검색하니 나온 이유가
이제는 더 이상 global 로 설치한 create-react-app 을 지원하지 않는다 이다.
no longer supported. 에 조금 의구심만 품었어도 금방 해결했을 문제.
일단 npm uninstall -g create-react-app 을 입력해 지원되지 않는 패키지를 삭제하고
다시 npx create-react-app [project-name] 을 입력하여 재설치
npx를 사용할 경우 뒤에 붙는 해당 패키지의 가장 최신 버전으로 설치한다.