Skip to content

Latest commit

 

History

History
4 lines (2 loc) · 465 Bytes

module_loading_bundling_and_build_tasks.md

File metadata and controls

4 lines (2 loc) · 465 Bytes

Module Loading, Bundling and Build Tasks: Webpack

Webpack is a JavaScript module bundler. It takes modules with their dependencies and generates static assets representing those modules. Webpack known only how to bundle JavaScript. To bundle other assets likes CSS, HTML, images or just about anything it uses additional loaders. Webpack can also be extended via plugins, for example minification and mangling can be done using the UglifyJS plugin for webpack.