I've started learning about Angular 2 and have come across this term "tree shaking" and I haven't been able to find any good explanation of it from a beginners' perspective.
I have two questions here:
- What is tree shaking and why would I need it?
- How do I use it?
I see you have three questions here; 1. What is tree shaking? 2. What's the need of it? 3. And, how do you use it?
1. What's tree shaking?
Tree shaking refers to dead code elimination. It means that unused modules will not be included in the bundle during the build process.
Utilizing the tree shaking and dead code elimination can significantly reduce the code size we have in our application. The less code we send over the wire the more performant the application will be.
2. What's the need of tree shaking?
Tree Shaking helps us to reduce the weight of the application. For example, if we just want to create a
“Hello World”
Application in AngularJs 2 then it will take around 2.5MB, but by tree shaking we can bring down the size to just few hundred KBs, or maybe a few MBs.3. How to use / implement tree shaking?
Tools like webpack will detect dead code and mark it as “unused module” but it won’t remove the code. Webpack relies on minifiers to cleanup dead code, one of them is UglifyJS plugin, which will eliminate the dead code from the bundle.
Same applies to npm dependencies. great example is lodash, just
import pick from 'lodash/pick'
and your bundle will only include one small module instead of entire lodash library.