- nodejs 설치
- create-react-app 설치 (최초1번)
$ npm install -g create-react-app
- react프로젝트 생성
$ npx create-react-app 프로젝트이름
- react 프로젝트 실행
$ cd 프로젝트폴더
$ npm start
- http://localhost:3000 에서 프론트엔드 서버 실행
- styled-components: 동적 css 처리를 도와주는 라이브러리
$ npm install styled-components
- bootstrap, reactstrap : CSS 라이브러리
$ npm install bootstrap reactstrap
- sass : CSS 확장문법 라이브러리
$ npm install sass