Language/React

React/프로젝트 생성

건담아빠 2022. 8. 2. 14:40

 

1. React 프로젝트 생성 및 실행

# npx cash 날리기
  $ npx clear-npx-cache
  
# create-react-app 설치
  $ npm config set prefix /usr/local
  $ sudo npm install -g create-react-app

# front-end 프로젝트 생성
  $ npx create-react-app front-end-js
  $ cd front-end-js
    
# 시작
  $ yarn start
  $ ONLY_DEV=true BROWSER=none yarn start

 

2. 확인