React.js를 만들 때, 필요한 초기 세팅에 대해 알아보자.
Node.js(https://nodejs.org/en/) 다운 후 버전 보기
node -v // output: v12.16.1
npm -v // output: 6.13.4
아무정보도 안뜨면 node.js 재설치
리액트 폴더 생성
// 리액트폴더를 생성하고 싶은 폴더로 가서
npx create-react-app 폴더명
cd 폴더명
npm run start
Router 설치
npm install react-router-dom --save
SaSS 설치
npm install node-sass --save
Styled-Component 설치
npm add styled-components --save
'■ 프로그래밍 > React' 카테고리의 다른 글
CRA에 ESLint와 Prettier 적용하기 (0) | 2020.04.30 |
---|---|
React에서 구글맵 API 사용하기 (0) | 2020.04.27 |
Props, State, constructor() (0) | 2020.04.14 |
Default Export, Named Export (0) | 2020.04.13 |
React Lifecycle(생명 주기) (0) | 2020.04.12 |