Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when reviewing scripts, client components, bundles, or runtime behavior related to Use ES modules (import/export). Inspect both source code and the browser execution path so fixes target the real bottleneck or bug.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-23 | ✗→✓ | ▲ Improved | 231% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 22% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 112% | 0% |
| case-07 | ✓→✓ | = Same ✓ | 180% | 0% |
| case-03 | ✓→✓ | = Same ✓ | -3% | 0% |
ES modules are statically analyzable — bundlers can determine at build time what code is actually used and eliminate the rest (tree-shaking). CommonJS require() is dynamic and prevents this optimization. ES modules are also the browser-native standard, reducing the need for build-time transformation.
Identify any use of require(), module.exports, or exports in this JavaScript file that should be converted to ES module syntax.
Convert all require() and module.exports statements to ES module import/export syntax.
Explain the benefits of ES modules over CommonJS, including tree-shaking, static analysis, and browser support.
Review scripts, client components, and browser execution paths related to Use ES modules (import/export). Flag exact imports, event handlers, runtime side effects, or blocking operations that violate the rule, and state how the change should be verified in the browser.
For full implementation details, code examples, and framework-specific guidance, see references/rule.md.
Rule page: https://frontendchecklist.io/en/rules/javascript/es-modules
Other measured skills in the registry, with their headline benchmark lift.