카테고리 없음
2. React 구조
찌뮤
2021. 10. 20. 11:10
프로젝트구조
>node_modules
>publics
-index.html
>src
-app.js
-index.js
package.json
프로젝트 안에 3개의 폴더(node_modules, publics, src)와 1 가지 파일(package.json)이 있다.
node_modules
- js 패키지 관련 파일들 위치하는 곳
publics
- index.html 이 위치하는 곳, index.html가 메인이되는 SPA(single page application) 인듯.
src
- 소스코드 위치
- app.js 파일로 publics/index.htlm 파일을 컨트롤 하는곳인듯.