Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Webpack the module bundler

Webpack the module bundler

사내 스터디 시간에 발표한 웹팩 관련 자료입니다.

Jinny You

August 08, 2018
Tweet

More Decks by Jinny You

Other Decks in Programming

Transcript

  1. “ 웹팩은 다양해진 웹 기술을 하나로 묶어주고 여러 환경에서의 크로스

    브라우징을 가능케 해주며 성능을 개선해주는 모듈 번들러(Module Bundler)이다. “
  2. 1-3. Loader Loader : 모듈에 대해 행동을 취해주는 블랙박스. ?

    모듈 (JS, PNG, CSS…) => Dependency Graph => Ex) babel-loader
  3. 2. 결과물 index.html index.js 모든 모듈을 하나의 파일에 압축하여 모듈

    로딩과정이 생략되었으므로, 성능상의 이점 존재.