React/노마드코더 React

[React] Set up

seung_hyeon 2024. 7. 13. 17:33

#8 Introduction / #9 Set up

 

node -v
npm -v
npx -v
git --version

➣ Terminal에서 설치되어 있는지 확인

 

npx create-react-app 파일 이름

➣ 파일이 저장되어 있는 곳에서 실행해야 한다 ! 

 

• git

( github에서 repository 만들기)

 

git init
git remote add repository 주소
git add .
git commit -m repository 주소 
git push origin

 

VSC Terminal

'React > 노마드코더 React' 카테고리의 다른 글

[React] State  (1) 2024.07.14
[React] JSX & Props  (0) 2024.07.13
[React] Practice Movie App  (0) 2024.07.12
[React] Effects  (0) 2024.07.12
[React] Create React App  (0) 2024.07.12