React js (create-react-app) 설치
설치 순서
|
* 2~4번은 윈도우 cmd를 이용하여 설치
1. node js 설치
- 8.12.0 LTS 버전 설치
- cmd에서 node --version으로 설치 확인
- 개발 폴더 생성 ( 경로: C:\dev\react )
2. npm 설치
- npm은 node js 패키지 매니저로, 모듈을 설치할 수 있게해준다.
- npm은 node js 와 함께 설치된다. node js를 설치했다면 기본으로 설치되며, 따로 설치할 필요 없음
3. yarn 설치
- yarn 도구는 npm 문제점을 개선한 패키지 매니저로, 패키지를 훨씬 빨리 설치할 수 있다.
- npm을 통해 설치해야한다.
- npm install --global yarn
- 설치확인: yarn --version
https://classic.yarnpkg.com/en/docs/install#windows-stable
4. create-react-app 도구 설치
- yarn 또는 npm을 통해 설치
- yarn 권장 (npm 지역적, yarn 전역적으로 사용 가능, 모든 디렉토리에서 create-react-app을 사용해야하므로 yarn을 선택)
- yarn global add creat-react-app
윈도우에서 cmd 창에 npm install -g create-react-app 입력하여 설치해준다.
설치 확인 create-react-app -v
저장 경로를 바꾸기 위해서 cd C:\Users\malon\Desktop\react-app 폴더를 끌고와서 경로 지정
해당 경로에 설치 create-react-app .
5. 프로젝트 생성
- npx를 이용해서 프로젝트를 생성한다. (윈도우일 경우 npx로 해야지 정상적으로 생성된다)
- npx create-react-app todo-list 를 하면 1~3분 정도 소요되며, 프로젝트가 생성된다.
- 생성된 todo-list 프로젝트로 이동 (cd todo-list)
- yarn으로 프로젝트 시작
- yarn start
6. 정리
- node js 설치 후 개발 디렉토리 생성
- yarn 설치 (npm install --global yarn)
- create-react-app 글로벌 설치 (yarn global add create-react-app)
- 프로젝트 생성 npx create-react-app todo-list)
- 프로젝트 디렉토리로 이동 (cd todo-list)
- yarn으로 프로젝트 시작 (yarn start)
tip npm start 명령어 에서 에러나는 경우
-
npx create-react-app frontend 실행
-
cd frontend 실행
-
npm start 실행
- ctrl + c 실행 종료
출처 : https://leeph.tistory.com/25
'IT > 리액트' 카테고리의 다른 글
[리액트] HOOKS / useEffect(), useMemo(), useCallback() 총정리 (0) | 2020.12.04 |
---|---|
[리액트] PropType 과 isRequired (0) | 2020.11.30 |
[리액트] from react native to Flutter (0) | 2020.10.16 |
[리액트] 비주얼 스튜디오 코드와 플러그인 설치하기 (0) | 2020.03.09 |