Skip to main content Skip to docs navigation

Tree Shaking

Tree shaking is a term commonly used within a JavaScript context to describe the removal of dead code.

On this page

Tree shaking

It relies on the import and export statements to detect if code modules are exported and imported for use between JavaScript files.

In modern JavaScript applications, we use module bundlers (e.g., webpack or Rollup ) to automatically remove dead code when bundling multiple JavaScript files into single files. This is important for preparing code that is production ready, for example with clean structures and minimal file size.

See also

Updated on April 20, 2024 by Datarist.