Better Programming

Advice for programmers.

Follow publication

Member-only story

Module Bundlers in 5 Minutes — the What, the Why, and the Which

IspeakCode
Better Programming
Published in
6 min readFeb 2, 2021
BG Image — Unsplash

Module Bundlers — you have probably heard of them a thousand times, but have you ever thought about the need for them or what they do under the hood? Well, to understand what they do, we need to go back in time a little. So, let’s dive in.

Why Do We Need a Module Bundler?

Back in ancient times, all you needed to build a website were HTML, JS, and CSS, and things were much simpler. But when the internet grew exponentially, so did the need for building more complex web pages and apps. Imagine that we are writing a complex website the old school way using just those three. In an ideal case, we would break our JS into different files and include them in the HTML for simplicity. Here’s an example:

Image of html scripts using js files.

But in this case, each file will make separate HTTP requests, which results in five requests to load everything the application needs to work. To avoid this, we could combine them into one single file — which includes everything — as follows:

But this makes the file complex and big to manage manually. And it’s not an easy or straightforward process. For example, two files may have the same functions and variables, and it will be a headache before deployment to work on resolving issues.

Let’s also consider a more modern example of a project that is built with a JS framework like Angular and uses libraries from npm. This causes even more problems while deploying. We would have too many files to keep track of manually while building. If the project has a dependency on a library, that library may have a dependency on multiple other libraries for it to work. This will require the developer to create a complex and large dependency chart while building.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

IspeakCode
IspeakCode

Written by IspeakCode

I Speak Code, binge thrillers, and seek adventures while following food, sports, fashion, and science.

Responses (1)

Write a response