React/Settings

React - Create React App ( package.json module 업데이트 )

고코모옹 2021. 6. 4. 07:20

https://create-react-app.dev/

 

Create React App

Set up a modern web app by running one command.

create-react-app.dev

 

  • 프로젝트 생성
    • npx create-react-app [프로젝트명]
    • npx : npx 5.2.0 이상부터 함께 설치된 커맨드라인 명령어
  • 프로젝트 개발 모드 실행
    • npm start
  • 프로젝트 build 및 프로덕션 모드 실행
    • npm run build
    • npx serve -s build

 

참고) package.json 모듈 업데이트

  • npm i -g npm-check-updates
  • ncu -u ( package.json 모듈 업데이트)
  • npm i ( 업데이트 된 package.json 재설치 )