When developing a web application, one must think about optimising the user experience. And one of the things one must think about is the number and size of the files being downloaded.
If you have ever gone to a web page where they have forgotten to optimise the graphics and you have a 2MB background picture; it can be painfully slow. But one thing that many people forgot about is that most browsers can only download a small number of files at once, so the more files you have, the longer it will take the site to load.
Here at Cognitive X Solutions, we use the Angular framework for developing web sites that approach the speed and ease of use of a desktop application, and we do it with Microsoft's Typescript, which allows us to manage our JavaScript code bases with a greater level of ease, all the while helping us catch errors before they make it into production. But combined, we end up with sometimes 100s of Javascript files. Which is simply not acceptable for developing fast user experiences.
So what we do is we bundle and minify our javascript. Simply put, we combine all of those 100 files into 1 or 2 larger files (that's bundling) and then we strip out all comments, extra lines and spaces, and apply optimisations to the JavaScript itself so that the resulting file(s) are much smaller. (It has the (un)fortunate side effect of making the JavaScript extremely hard to read).
Originally we were doing this with a technology called Browserify, which analyses the interdependencies of our JavaScript files and produces a single file output that has all dependencies satisfied in an optimised way. We would then combine this technology with another one called Gulp that would allow us to automate this process (it would watch for file changes and rerun Browserify when they did). Gulp also handled compiling our CSS and inlining our HTML templates into a single file (Angular works by using templates, which without this inlining process meant that Angular, even if we combined it all into a single JavaScript file, would still be making calls to the server to load all those HTML snippets. With inlining, we load one large file that contains all the snippets by name. This allows a single call to be made to retrieve all templates, greatly increasing the speed / responsiveness of our web applications).
More recently, a new technology has come on the scene called Webpack. Webpack is the official bundler of Angular 2 (we currently still use Angular 1.6+ as it has more llibraries available for it, Angular 2 was a complete rewrite of the technology and component libraries are still catching up), as well as the React framework (a competitor to Angular). On one of our current projects, I decided to give Webpack a try. And I was quite impressed. It allowed me to accomplish in a much more succinct way (and in some cases more powerful way), what I had done with Gulp + Browserify. The end result was that I combined all our JavaScript, HTML, and CSS into a single Javascript file. So with one file download, a whole web application would spring to life. That is powerful. We will be switching our development practices to use this new technology so that our clients websites will experience this performance and responsiveness.
If you are interested in more information about exactly how we are using Webpack, you can check out my personal blog here