Reduce JavaScript execution time

Published on Updated on

Translated to: Español, Português, 한국어, 中文, Pусский, 日本語

When your JavaScript takes a long time to execute, it slows down your page performance in several ways:

  • Network cost

    More bytes equals longer download times.

  • Parse and compile cost

    JavaScript gets parsed and compiled on the main thread. When the main thread is busy, the page can't respond to user input.

  • Execution cost

    JavaScript is also executed on the main thread. If your page runs a lot of code before it's really needed, that also delays your Time To Interactive, which is one of the key metrics related to how users perceive your page speed.

  • Memory cost

    If your JavaScript holds on to a lot of references, it can potentially consume a lot of memory. Pages appear janky or slow when they consume a lot of memory. Memory leaks can cause your page to freeze up completely.

How the Lighthouse JavaScript execution time audit fails

Lighthouse shows a warning when JavaScript execution takes longer than 2 seconds. The audit fails when execution takes longer than 3.5 seconds:

A screenshot of the Lighthouse Reduce JavaScript execution time audit

To help you identify the biggest contributors to execution time, Lighthouse reports the time spent executing, evaluating, and parsing each JavaScript file that your page loads.

See the Lighthouse performance scoring post to learn how your page's overall performance score is calculated.

How to speed up JavaScript execution

For other ways to improve page load, check out the Performance audits landing page.

Resources

Source code for Reduce JavaScript execution time audit

Updated on Improve article

This site uses cookies to deliver and enhance the quality of its services and to analyze traffic. If you agree, cookies are also used to serve advertising and to personalize the content and advertisements that you see. Learn more about our use of cookies.