React. 시작 준비

Dae-Hee·2020년 12월 30일
0

React Base Study

목록 보기
1/9
post-thumbnail

React. 시작 준비

1. needful

(1). node.js (https://nodejs.org/ko/download/)
(2). yarn    (https://classic.yarnpkg.com/en/docs/install#windows-stable)
(3). IDE     (vscode)

2. install

npm install -g create-react-app

3. use

create-react-app hello-react

4. start

cd hello-react
npm start

5. stop

Ctr + c

6. rescue

APP.js >(index.js)> index.html (main page)

node_modules : 라이브러리 모음

public(folder) : static 파일 보관함

src(folder) : 소스 코드 보관함

package.json : 설치한 라이브러리 목록

0개의 댓글