React
React install 명령어 (react, react-router-dom...)
ji_su_04
2023. 1. 31. 20:52
React 설치
npx create-react-app (프로젝트 이름)
React-router-dom
npm install react-router-dom
React-redux
npx create-react-app [프로젝트명] --template redux //초기 시작시 동시 설치
npm install redux react-redux
Redux Toolkit
npm install @reduxjs/toolkit
위 라이브러리 한번에 설치
npm install --save redux react-redux redux-devtools-extension redux-thunk
Json server
npm install json-server --save-dev
json-server ./room.json --port 4000 // 실행 명령어
Axios
npm i axios
반응형