React 앱 생성을 위한 기본 설정
2641 단어 reactjavascripttutorial
create-react-app
를 사용하여 새 응용 프로그램을 만들고 응용 프로그램 이름을 <app-name>
로 바꿉니다. 추가 문서는 reactjs.org에서 볼 수 있습니다.npx create-react-app <app-name>
main
분기(현재 GitHub 기본값 및 선호하는 이름)를 생성하고 master
분기(여전히 create-react-app
의 현재 기본값)를 삭제합니다.git checkout -b main
git branch -d master
npm
대신 yarn
를 사용하려면 다음 단계를 수행하십시오.yarn.lock
node_modules
폴더 삭제node_modules
를 사용하여 npm
재설치 npm install
README
을 정리하여 응용 프로그램 상용구를 제거하고 첫 번째 커밋에 원하는 콘텐츠를 추가합니다. npm run start
git add .
git commit -m "Initial commit"
README
및 .gitignore
가 있으며 라이선스는 나중에 추가할 수 있습니다 git remote add origin https://github.com/<GitHub user name>/<repo name>.git
git branch -M main
git push -u origin main
Reference
이 문제에 관하여(React 앱 생성을 위한 기본 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kristenkinnearohlmann/basic-setup-for-create-react-app-1e3m텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)