React와 관련된 명령어 모음집

lunaxislu·2023년 11월 28일
  • node 설치 후!!! powershell || git bash

    	node -v // node버전 확인
  • npm은 node 설치하면 같이 다운 받아지는 패키지 매니저이다.

  • yarn 설치

    	npm install -g yarn // 글로벌하게 설치
        yarn -v        // yarn 버전 확인

    npm 설치 ( node ) 가 되면 터미널에서 (vscode, powershell등) 위 명령어를 쳐주면 yarn 설치가 글로벌하게 된다.

  • 리액트 실행

    	yarn create react-app [프로젝트 명]

0개의 댓글