Skip to content

WebPack

Ben Edgar edited this page Oct 20, 2016 · 1 revision

What does webpack do?

Webpack takes all of your javascript, css, and html files and bundles them together into a single javascript file to lower the number of HTTP requests needed to load a webpage. It is smart about this bundling so if you have a page that only needs resources x, y, and z, webpack will not load resources a, b, and c on that page too.

Short example of how to use it:

http://webpack.github.io/docs/tutorials/getting-started/

Links with more info:

Clone this wiki locally