Programming/React JS
React Project 시작하기, Github 연동하기(create-react-app, git clone)
이 글은 2023년 3월 31일에 작성된 글입니다. 1. create-react-app 실행 - 프로젝트 이름을 'my-toy-project'로 할 것으로 가정하면 명령어는 아래와 같다. npx 명령어로 할 경우 npx create-react-app my-toy-project yarn 명령어로 할 경우 yarn create react-app my-toy-project typescript로 시작하고 싶은 경우 yarn create react-app my-toy-project --templete typescript npx create-react-app my-toy-project --template typescript 2. '.git' 파일 삭제 - create-react-app 후 생기는 초기 git 설정 ..