npm : 프로그램을 설치하는 프로그램 npx : create-react-app 1회용 VScode > 터미널 > 세팅할 폴더 경로 설정 > npx create-react-app 프로젝트명 * 프로젝트 미리보기 : 터미널 > npm start * 프로젝트 배포 : 터미널 > npm run build * 1회용 서버 > npx serve -s build (serve라는 웹서버를 받아서 build라는 폴더를 document root로 삼겠다 라는 뜻 ) * 서버 생성 > npm install -g serve (serve 명령어 사용가능하게 하는 것) > serve