Prerequisites github account install git (later than Window 2.16) install node.js(later than Node 8.10.0) install npm 1. React project 생성 npx create-react-app mypage mypage라는 이름의 react app 생성 2. gh-pages 패키지 다운로드 cd mypage npm install gh-pages --save-dev 현재 폴더 위치를 mypage로 옮긴 후 gh-pages package 설치 (as a "dev-dependency" of the app) 3. package.json file 에 properties 추가 homepage property 추가 "homepa..