npx create-react-app my-app
명령어를 실행했는데, package.json 과 node_module, yarn.lock 파일만 생성되었다.
src 등 cra 에서 제공하는 다른 파일들이 없었다.
원인을 찾아보니
stackoverflow.com/questions/59220166/create-react-app-does-not-create-starter-template
공식문서 : create-react-app.dev/docs/getting-started/
기존에 설치했던 cra 를 삭제 해야한다.
sudo npm remove create-react-app
코드실행 후
npx create-react-app my-app 다시 시도 하니
with cra-template 가 출력 되면서 시작하는것을 볼 수 있었다.
npx create-react-app my-app
npx: installed 67 in 4.635s
Creating a new React app in /Documents/..../my-app.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...
정상적으로 template 셋팅이 되었다.
'IT > React' 카테고리의 다른 글
HTML to JSX 변환 (0) | 2018.05.07 |
---|