Why is Hot Module Replacement useful?
HMR updates only the changed module in the browser without a full reload, preserving component state. It makes development significantly faster by giving instant feedback on changes.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in Module Bundler Questions Asked in Frontend Interviews
A bundler takes your source files and dependencies, builds a dependency graph by following imports, transforms code like JSX, and outputs optimized bundles the browser can run.
Tree shaking removes unused code from your final bundle. It relies on the static structure of ES modules to determine which exports are never used, so they are excluded from the output.
Code splitting breaks your bundle into smaller chunks loaded on demand, usually via dynamic imports. It reduces the initial bundle size and improves load performance.
Still have questions?
Browse all our FAQs or reach out to our support team
