Performance

📊 The Performance panel in Browser DevTools helps you analyze your web app's performance. It records detailed CPU profiles showing exactly where time is spent, helping you identify slowdowns and optimize your code for better speed.

Using the Performance Panel

The Performance panel helps you analyze and optimize your web application by:

Performance Best Practices

Two key rules for fast JavaScript applications:

Understanding Browser Tasks

⚡ While reducing JavaScript size helps performance, how you execute code matters more.

🎯 Browser tasks include:

🔄 What is An Event Loop in JavaScript? 🤓

The event loop is an important concept in JavaScript that enables asynchronous programming by handling tasks efficiently. Since JavaScript is single-threaded, it uses the event loop to manage the execution of multiple tasks without blocking the main thread.

Output:

        Start
        End
        Promise Resolved
        setTimeout Callback
      

In this example:

JavaScript executes code synchronously in a single thread. However, it can handle asynchronous operations such as fetching data from an API, handling user events, or setting timeouts without pausing execution. This is made possible by the event loop.

The main thread processes one task at a time. Tasks longer than 50ms are long tasks, and their blocking period affects user interactions. Breaking up long tasks into smaller ones allows the browser to respond to higher-priority work sooner.

A depiction of how breaking up long tasks can improve performance

By breaking up tasks, the browser can handle user interactions more efficiently, making the interface feel more responsive.

    Work...

  1. Using console.time and console.timeEnd

    This method is straightforward and useful for measuring the time taken by a specific block of code.

  2. Using the Performance API

    The Performance API provides more detailed and precise measurements.

  3. Using performance.now

    For high-resolution time stamps, performance.now is a great option.

Navigation Controls

Keyboard Navigation:

Trackpad Navigation:

Create Breadcrumbs and Jump Between Zoom Levels

The Timeline overview lets you create multiple nested breadcrumbs in succession, increasing zoom levels, and then jump freely between zoom levels.

Hide Functions in the Flame Chart

To declutter the flame chart in the Main thread, you can hide selected functions or their children:

In the Main track, right-click a function and choose one of the following options or press the corresponding shortcut:

Adding Annotations in Performance Tool

Annotations help document and analyze specific events during performance analyzing.

To add a Lable to an entry, right-click on the element and select "Lable entry".

To add a link to another entry, right-click on the element and selete "Link entreis".

To define time range, Shift and drag the flame chart.

Web Vitals

Web Vitals is an initiative by Google to provide unified guidance for quality signals that are essential to delivering a great user experience on the web.

The Web Vitals initiative aims to simplify the landscape, and help sites focus on the metrics that matter most, the Core Web Vitals.

Core Web Vitals

Core Web Vitals are the subset of Web Vitals that apply to all web pages, should be measured by all site owners, and will be surfaced across all devtools. Each of the Core Web Vitals represents a distinct facet of the user experience, is measurable in the field, and reflects the real-world experience of a critical user-centric outcome.

To ensure you're hitting the recommended target for these metrics for most of your users, a good threshold to measure is the 75th percentile of page loads, segmented across mobile and desktop devices.

Largest Contentful Paint threshold recommendations Interaction to Next Paint threshold recommendations Cumulative Layout Shift threshold recommendations

Core Web Vitals

View Timings

On the Timings track, view important markers such as:

Flame Chart Colors

The flame chart in the Performance panel uses different colors to represent different types of activities:

The height of each bar in the flame chart represents call stack depth, while the width shows how long that particular function took to execute.