Making Sense of Your Bundle with Webpack Sourcemaps

ICYMI: Tomorrow I'll be giving a 1-hour webinar called "Understanding Webpack". There are currently 80+ people registered to attend. Want to be among them?

Webpack does all kinds of things to your source code in order to produce the final build product(s). If you ever looked at the source of a Webpack bundle, it's basically unreadable. It's optimized for small file sizes and for machines to be able to parse quickly, especially if you've compiled in production mode. Sourcemaps are JavaScript files that accompany your final bundles and map the generated code back to the original source code. Dev tools such as the Chrome inspector will load these sourcemaps and use them to display errors in the context of your original source, rather than the transpiled product.

You generate sourcemaps for your build by specifying a devtool value in your Webpack config file. Webpack offers a dizzying array of options, the reason being that they are actually presets that proxy to more fine-grained configurations of the SourceMapDevToolPlugin. The main considerations are speed of build and rebuild, fidelity to your original source code, and privacy in production. More on this last point in a moment.

When you run Webpack in development mode, it uses the "eval" sourcemapping option by default. This embeds the sourcemaps right into your bundles. If you open your browser dev tools and open the sources tab, you'll see not only the bundle files but the original source files alongside them.

Well actually, you'll see something that sort of resembles your source code, but is wrapped in a bunch of Webpack module-loading boilerplate. For development, I recommend instead specifying devtool: eval-source-map. It takes a little longer to generate the sourcemaps, but the result is line-for-line fidelity to your original source. Well worth it in my opinion.

If you run a build in production mode (webpack --mode production), the default is not to generate sourcemaps at all. That might be ok for now, but eventually you're going to need to know the path back to whatever is throwing those pesky errors in production. A good starting option here is devtool: source-map. This produces the same fidelity output as eval-source-map, but extracts them to separate files so that they are not downloaded by your end users. They are not loaded until requested through the browser devtools.

I mentioned earlier that one consideration for sourcemaps is privacy in production. In a business setting, you often don't want to share your source code with the world for anyone to download. By keeping them as separate files, you can put them behind authentication, or even remove them from your production servers altogether and upload them to a separate error reporting service, such as Sentry.

Tomorrow, I'll finish up this series on Webpack by showing you how to compose and cascade your configuration files so that they don't become sprawling, monolithic beasts.

Next Up:
Composing Webpack Configs

Previously:
How Does Webpack Achieve Module Scope?


Want to impress your boss?

Useful articles delivered to your inbox. Learn to to think about software development like a professional.

Icon