노마드 코더 - ReactJS로 영화 웹 서비스 만들기
Window 기준
목차
#8 Introduction
#9 Setup
#10 JSX & Props
#11 State
#12 Making the Movie App
#13 Conclusions
#14 Routing Bonus
#1~#7까지는 안할거에오. 리액트 아예 처음 접하시는 분이라면 꼭 하고 시작합시다!!
9.1 Creating a Github Repository
1. create repository
2. repository 연결
git init // git 생성
git remote add origin https://github.com/uyeah0/MovieApp.git // 연결
git remote -v // 연결 확인
3. commit push 커밋푸시
git add . // 모든 파일 등록
git commit -m "#1.0 Creating your first React App" // 커밋 메세지 작성 후 등록
git push origin master // git repository에 push하여 커밋 최종으로 올리기
'개발ING > React' 카테고리의 다른 글
[ReactJS/노마드코더] Create React App 리액트 프로젝트 생성 - ReactJS로 영화 웹 서비스 만들기 (2) | 2024.11.19 |
---|---|
[ReactJS/노마드코더] ReactJS로 영화 웹 서비스 만들기 #8 Introduction (0) | 2024.11.18 |
[websocket 정복] 환경설정 nodeenv 가상환경 생성 활성화 해제 (2) | 2024.11.13 |
[websocket 정복] nodejs 가상환경설정 도구 nodeenv 설치 (윈도우) (2) | 2024.11.09 |
[React] onclick setstate is not a function (0) | 2023.03.07 |