Home  >  Article  >  Web Front-end  >  What is webpack

What is webpack

青灯夜游
青灯夜游Original
2018-12-06 15:26:1920033browse

Webpack is a module bundler for the largest single-page web applications that can be bundled with a separate task runner that can handle JavaScript, CSS, and more. webpack is a great addition to a front-end developer's toolset. With webpack, web development is faster, more efficient, and more fun.

What is webpack

What is a module bundler?

In most programming languages, we can split the code into multiple files and import these files into the application to use the functionality contained within them. This is not built into the browser, so building module bundlers will provide this functionality in various forms: by loading modules asynchronously and running them after loading; or by combining all required files into a single JavaScript file , loaded through the