webpack 환경을 구축한 Boilerplate code 입니다. webpack 설정 코드만 보시려면 client 폴더만 참고 하시면 됩니다. server는 잘 작동하는지 확인용으로 넣었습니다.
- cd client && npm start
- cd server && npm start
webpack
├─ README.md
├─ client
│ ├─ babel.config.json
│ ├─ index.html
│ ├─ package-lock.json
│ ├─ package.json
│ ├─ src
│ │ ├─ images
│ │ ├─ javascripts
│ │ │ └─ index.js
│ │ └─ stylesheets
│ │ └─ style.scss
│ └─ webpack.config.js
└─ server
├─ app.js
├─ package-lock.json
├─ package.json
└─ routes
└─ main.js
- package.json 참조
https://polarmin.tistory.com/49
- npm install -D express
- npm install -D express-generator