Webpack 4 course – part seven. Decreasing the bundle size with tree shaking

JavaScript Webpack

This entry is part 7 of 8 in the Webpack 4 course

In this part of our webpack 4 course, we will take the idea of optimization even further. We will learn what the tree shaking is and how to use it. You will find out what requirements you need to meet in order for the Webpack 4 tree shaking to work and how can it benefit you. Let’s go!

Webpack 4 tree shaking

First, let’s answer a question what the tree shaking is and how can it benefit us. We often use named imports on files that have a lot of other exports. It might create a case in which we don’t import all the things, but webpack would include a whole module anyway. This is where tree shaking comes in handy because it can help eliminate this dead code for us. Thanks to that, our bundle size can decrease greatly.

If you would like to know more about imports and exports, check out the first part of this course: Entry, output and ES6 modules

For the tree shaking to take place, you need to meet a set of requirements. First of all, ES6 modules have to be used, instead of, for example, the CommonJS. This can already cause you trouble if you are using Babel. It is due to the fact, that its presets are set to transpile any module type into CommonJS by default. You can easily fix it by using  , either through the .babelrc or the webpack.config.js file.

.babelrc

webpack.config.js

If you would like to read more about the babel-loader or the loaders in general, check out the second part of the course.

You need to use UglifyJsPlugin. By default, it is added with the  . If you prefer not to use  , you can add UglifyJsPlugin manually.

If you are not familiar with the UglifyJsPlugin, check out the fifth part of the course: Built-in optimiziation for production

One more thing to remember is that you need to turn on optimization.usedExports. It is also added with  . It tells webpack to determine used exports for each module. Thanks to it, webpack will add additional comments in your bundle such as   that UglifyJsPlugin can later interpret.

Harmony is a code name for ES6 and ES2015

Let’s examine such a case:

utilities.js

index.js

Running this code without a proper configuration gives us output such as this one:

As you can see, webpack didn’t tree-shake our bundle! We have both the add and subtract functions here. We will experiment a little and use such configuration:

webpack.config.js

I’ve turned off most of the UglifyJsPlugin options so that we see clearly what happens with our code. Running the above gives us such output:

Thanks to the usage of the optimization.usedExports and the unused option of the UglifyJsPlugin, unnecessary code was removed. Please note, that it is a default behavior in the UglifyJsPlugin, so using it with default configuration will also remove dead code (aside from running many other compressing processes).

Tree shaking libraries

If you intend to tree shake libraries, you need to remember the first thing noted in the previous paragraph: using ES6 modules, which is still not obvious in the libraries. A great example here is lodash. If you look into the code it ships, you can clearly see that it does not use ES6 modules.

Imagine wanting to use the debounce function that lodash provides.

index.js

Now you have the whole lodash library in your output. No way to avoid that when using  . Don’t worry though! Someone gave it a thought and created a package called lodash-es. It provides the lodash library exported as ES6 modules.

Unfortunately, webpack will still fail to tree shake. According to the ECMAScript spec, all child modules need to be evaluated because they could contain side effects. I recommend reading a good explanation by Sean Larking on Stack Overflow (he is a member of the webpack core team). If a package author wants to give notice that his library does not have such side effects, he can do so in the package.json file of the library. If you look at the package.json in the lodash repository, you can see that it has  . So what is the problem here?

Webpack ignores the sideEffect flag by default and to change that behavior we need to set optimization.sideEffects to true. You can do it manually or through .

webpack.config.js

Now the lodash library will be tree-shaken by webpack!

Summary

There are quite a lot of requirements that you must meet for the tree shaking to work. It is a very useful feature to have and it is certainly worth learning. Hopefully thanks to this article you now know how to use it, because it can make your bundle a lot smaller. Just keep in mind that you need to use ES6 modules and the UglifyJsPlugin. Also, remember to configure the optimization configuration, setting usedExports and sideEffects to true.

Series Navigation<< Webpack 4 course – part six. Increasing development experienceWebpack 4 course – part eight. Dynamic imports with prefetch and preload >>
Subscribe
Notify of
guest
4 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Allan Bogh
Allan Bogh
5 years ago

uglifyOptions: {
compress,
mangle: false,
output: {Damn i
beautify: true
}
},

You might want to check your cursing in code. I make a rule to never curse in code so that I don’t end up doing something like this or havings others see it.

Mohamad amin ataee
Mohamad amin ataee
5 years ago

Hi .. I do not understand what the “side effect” means. Do you explain it?

sathya
sathya
3 years ago

if we dont want to allow any specific files to tree shaking. we can mention that file in array eg(sideEffects:[])
sideEffects: false means to allow all files in our project ie tree shakable.