[React] create-react-app 으로 프로젝트 시작하기

create-react-app 으로 프로젝트 시작하기



1. 설치하기


npm install -g create-react-app



2. App 생성하기


create-react-app hello-world

위 명령어를 실행하면, create-react-app 도구를 통하여 react 프로젝트를 initialize 하고,
그 다음에 자동으로 스크립트를 통하여 dependency package 들을 설치합니다 
(webpack babel eslint 등..)
(dependency package 를 루트 프로젝트에 설치하는게 아니라 
node_modules/react-scripts 디렉토리에 설치합니다)


3. 서버 실행하기

npm start 
webpack-dev-server 를 시작 할 수 있습니다
hot-reload 가 적용되어있기 때문에, 이 개발 서버를 키고, 코드를 수정하면 자동으로 적용이 됩니다.


참조 : https://velopert.com/2037

댓글

이 블로그의 인기 게시물

[c#] DataTable을 dataGridView에 바인딩

[React] index.html 수정하기

[React] 프로젝트 생성