Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 490 Bytes

File metadata and controls

15 lines (12 loc) · 490 Bytes

React.js 클라이언트 구축

node.js 설치 확인

  1. $ node -v로 노드 설치 확인
  2. $ npm -v로 npm 설치 확인
  3. $ npm install npx -g로 npx 설치

create-react-app 설치

  1. $ npx create-react-app [앱이름]로 react.js 프로젝트 생성
  2. 프로젝트가 다 만들어질때까지 대기
  3. $ npm start로 실행해서 잘 되는지 확인

필요한 라이브러리 설치

  • $ npm install axios
  • $ npm install react-router-dom