React
사용자 인터페이스를 만들기 위한 JavaScript 라이브러리
Node.js LTS 버전 다운
React 홈페이지 - 시작하기 - 새로운 React 앱 만들기 - Create React App
npx
: node js package를 실행시켜줌npx create-react-app my-app
'create-react-app'을 실행시키면서 'my-app' 폴더(어플리케이션 이름)에 react application이 만들어진다."scripts": {
"start": "react-scripts start", // 실행
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
localhost:3000
이 기본이다.