기록/리눅스
[리눅스] ubuntu에 ReactJS 설치하기
코드코코
2021. 12. 17. 09:14
0. NodeJS 와 NPM 이 설치 되었는 지 확인
$ node -v
$ npm -v

1. react app을 생성할 수 있는 명령어 설치
$ npm -g install create-react-app

2. create-react-app 버전 확인
$ create-react-app --version

3. react app 생성해보기
$ create-react-app <생성하고자 하는 app의 이름>

4. 생성한 react-app 실행해보기
$ cd hello-react : 생성된 app의 경로로 들어간다
$ npm start

-끝-