잇스쿨

[Redux] Redux 프로젝트 환경 설치 본문

프론트엔드/React

[Redux] Redux 프로젝트 환경 설치

잇님 2020. 4. 20. 13:17

 

1.  npm install -g create-react-app

프로젝트 환경을 구축할 경로로 이동하여 명령어 실행

 

2. create-react-app [프로젝트 폴더명]

ex. create-react-app redux-example

 

3. redux 설치

npm install --save redux react-redux 명령어 실행

(react-redux : 뷰 레이어 바인딩)

'프론트엔드 > React' 카테고리의 다른 글

[Redux] Smart 컴포넌트와 Dumb 컴포넌트  (0) 2020.04.20
[React] props 와 state  (0) 2020.03.05
[React] 컴포넌트 만들기  (0) 2020.03.05
[React] JSX  (0) 2020.03.05
[React] vscode 로 React Sample Application 실행해보기  (0) 2020.03.05