개발공부/리액트
[리액트] 패키지 설치 명령어 모음
햄❤️
2021. 3. 30. 13:56
728x90
1) 프로젝트 만들때
yarn create-react-app 폴더명
2) 프로젝트 들어갈때
cd 폴더명
//나올때
cd ..
3) 리덕스 설치하기
//이건 리덕스와 리덕스 모듈 내에서 경로 이동까지 하게 해줄 히스토리, 라우터와 히스토리를 엮어줄 모듈까지 한번에
yarn add redux react-redux redux-thunk redux-logger history@4.10.1 connected-react-router@6.8.0
//불변성관리를 위한 immer 설치
yarn add immer redux-actions
4) 파이어베이스 설치
yarn add firebase
5) material UI 설치
yarn add @material-ui/core @material-ui/icons
6) loadsh 설치 -> 무한스크롤
yarn add lodash
7) moment 설치 -> 날짜 가져오기
yarn add moment
8) styled components 설치
yarn add styled-components
9) react-router-dom 설치
yarn add react-router-dom
10) 프로젝트 시작
yarn start
728x90