create-react-app

tintwo·2022년 12월 13일
0

매번 직접 연동 할 수 없다.

npx = npm 패키지를 바로 실행, execute 까지 해주는 명령어

간편하게 한번에 처리하기 위해 사용한다.

// 사용법
npx create-react-app <your-project-name>

//실제 사용 예제
npx create-react-app first-react


y를 누르자.

간단하게 명령어들을 알아보자

// 경로 변경
cd my-app 

// react 실행, localhost:3000을 통해 실행된다.
npm start

npm start를 했을 때 강의에서는 잘 실행되지만, 내 컴퓨터에선 실행되지 않고

에러가 난다.

AppData\Local\npm-cache_logs\2022-12-13T01_07_39_769Z-debug-0.log

왜 그런가 했더니 디렉토리를 잘못 설정하고 npm start를 계속 했다..

create app을 하며 프로젝트 이름을 입력할 때 first-react라는 이름으로 프로젝트를

생성 했는데, cd first-react를 해서 디렉토리 이동 후

npm start를 하니까 잘 해결 되었다..

profile
study records of beginner developer

0개의 댓글