개발 환경 설정하기

sdsd

리액트를 학습하기 앞서 먼저 개발 환경을 셋팅하는 법을 알아보겠다. VS Code나 Git은 설치되어 있는 관계로 이에 대한 설명은 생략 하겠다.

01. Version: Windows

1-1. Node 설치하기

Node 다운로드

1-2. 설치 명령어

/* react 설치 */
npm init react-app <프로젝트명>

1-3. Git 명령어

git init
git remote add origin <URL>
git config --global user.name "name"
git config --global user.email "email"

git status
git add .
git commit -m "message"
git push origin master

참조

Last updated

Was this helpful?