-
Notifications
You must be signed in to change notification settings - Fork 1
디렉토리 구조
Jisu Kim edited this page Jan 9, 2022
·
4 revisions
- express-generator package 로 기본 틀 생성
├── bin # server 포트 연결 및 서버 실행 www.js
├── controllers # view 와 model 이어주는 controllers
├── config # db 연결 등 초기 설정에 사용되는 파일
├── db # db 테이블 생성 sql 파일
├── lib # 함수를 모듈화하여 관리하는 파일
├── models # db query 문 등 db 관련 파일
├── middlewares # 컨트롤러에서 쓰이는 미들웨어
├── node_modules # npm packages
├── public # express.static()으로 client에 정적 render 하는 소스
├── routes # uri 별 routing 파일
└── views # *.ejs view 파일