Performance is User Experience: Optimizing the Frontend for the Users

Rate this content
Bookmark

In most computer systems, definition of performance is straight forward enough: do more work per time with less resources. For a frontend web application, this is rarely the case. Frontend applications not only need to be resource-efficient, but must also ""feel"" efficient to the user. This makes performance on the frontend mostly a user experience issue.


Join me as we take a deep dive into the important performance metrics of a modern frontend app, how to measure them, and how to optimize them for both the machine and the user.

8 min
20 Jun, 2022

Video Summary and Transcription

Today's Talk discusses software performance and optimizing the frontend for the user. It emphasizes the importance of passive performance, which is a subjective measure of how well users perceive the application's performance. Techniques to improve performance include using a shared cache, HTTP2, preloading requests, and CDN. Optimizing frontend performance involves avoiding blocking the main thread, loading necessary resources first, using progress bars, and implementing optimistic patterns. It also highlights the importance of considering users' changing expectations throughout their interaction with the application.

Available in Español

1. Introduction to Software Performance

Short description:

Today we're talking about is his experience optimizing the front-end for the user. Software performance is a measure of how well your application is running, performing its task, and using system resources. On the front end, software performance includes how users feel about the application. Passive performance is a subjective measure of how well the user thinks the application is performing. It can be indirectly measured through bounce rates, which indicate if users are dropping off after a few seconds. To improve passive performance, you can reduce the time between user entry and website loading by using a shared cache.

Hello, everyone, and thank you for coming to my presentation. Today we're talking about is his experience optimizing the front-end for the user.

My name is Chinayan Onwebu. I am a senior software engineer at HubSpot. What is software performance? We all know what software performance is, or at least we have an idea. This is basically a measure of how well your application is running, how well it's performing its task, and how well it's using the system resources that are available to it.

On the front end, however, software performance is all this, plus how users feel about the application. So if the user doesn't feel good about the application, no matter how fast your application actually is, your application is not performing well. Because the front end is running for the user, we measure performance of the front end in relation to the user. So we call this passive performance. This is a subjective measure of how well your application is performing. How well the user thinks your application is performing.

Passive performance is very difficult to measure. You cannot measure it directly. There is no way to tell how users feel about your application. There are ways to measure it indirectly. First, you can use bounce rates. If you get a lot of bounces, you are getting a lot of users that are dropping off after the first few seconds on your website. It's usually a sign that your application is not performing very well. Users think that your application is slow. Maybe the pages are not loading. Of course, it could also be some other problem. Maybe it's not the content that they are expecting. But usually, it's a sign of poor performance. Users think that your application is performing poorly. Research has shown that users will abandon a website between three and five seconds after waiting for the website to If your application does not show content in the first five seconds, there is a very high chance that you are going to lose a lot of users.

How do we actually improve the passive performance of our application? You can always improve passive performance by improving actual performance. First of all, you want to reduce the amount of time between when the user enters your website, presses enter, and when your website actually loads. We want to use a shared cache, for example. A shared cache is a cache that is shared between users.

2. Improving Software Performance

Short description:

If one user visits a page already cached, a second user will retrieve the cache. Using HTTP2 can massively improve performance, especially for resource-heavy websites. Preloading important requests and using a CDN like Cloudflare can also enhance performance. Server-side rendering allows users to see content immediately, improving passive performance. Avoid blocking the user by using tricks like avoiding CPU-intensive tasks on the frontend and loading resources gradually.

So if one user visits a page, and this page is already cached, a second user visits the same page, the second user will retrieve a cache of this page. You can also use HTTP2. HTTP2 will massively improve your performance. This is especially true if your website loads a lot of resources. This includes websites that have a lot of images, for example, or websites that load a lot of scripts, a lot of CSS. HTTP2 will make loading resources in parallel to be much, much faster than HTTP1.

You can also preload important requests. There are several ways to do this. Preloading important requests will make your website or your application feel snappier to the user. Using a CDN will solve a host of issues on your application right out of the box. Using Cloudflare, for example, will give you shared cache without you having to do anything. It will also give you HTTP2 without you having to do anything.

Finally, you can use server-side rendering. Server-side rendering makes sure that when the page loads, the user sees content immediately. So the user doesn't have to wait for all the JavaScript to load before they can see the content of your website. Using server-side rendering, users can already see the content and then you can inject the script, hydrate the page later for user interaction. Then you can also improve passive performance directly by doing some tricks. These tricks do not change anything in your website. They do not change how your website actually performs, but they kind of change how these are passive your website, how they perceive the application and one of those is to avoid blocking the user.

3. Optimizing Frontend Performance

Short description:

When performing CPU intensive tasks on the frontend, avoid blocking the main thread. Load only necessary resources at the beginning to prevent rendering blocking. Use progress bars instead of spinners to provide users with a sense of progress. Implement optimistic patterns to mark tasks as completed before they finish. Avoid blocking users by allowing them to continue using the application while waiting for tasks to complete. Consider the changing expectations of users throughout their interaction with the application.

So, if you are performing some CPU intensive tasks on the frontend, let's say you are rendering images, you should avoid blocking the main thread. Always use worker thread for any task that will take more than a few milliseconds. The good standard is 16 milliseconds. If it's going to take more than 16 milliseconds, you should move it to a separate thread.

You should not block rendering. Blocking rendering is very, very easy to do and very difficult to avoid. But one simple rule to avoid blocking rendering is to only load the resources that you need at the beginning and then load the rest later. So, in Webpack for example, you can split your script into chunks and then you can load only the important chunks first and then load the other chunks later or as they are needed. This way you will not block the rendering of the page. You only request what is required at the beginning.

You can also avoid using spinners and use skeletons instead. Spinners make users think that your website is slow. It is psychological. They do not know what they are waiting for. They just know that they are waiting for something. When it's possible, try to use progress bar instead of just a spinner. Progress tells the user the actual progress of what they are waiting for so that they are not just left in the dark.

Use optimistic patterns. There are a lot of resources online that explain what this means. When you use optimistic patterns, you mark a task as completed before it's actually completed. And only when it fails, you actually tell the user that this has failed. Gmail is a very good example of this. When you send a message, Gmail actually tells you that the message has been sent before the mail has been sent. It makes you feel as if Gmail is instant but it is not.

Don't block the user. This is a very common mistake. What does it mean to block the user? If, for example, a user submits a form on your application and then you show a full-screen please wait spinner, telling the user to wait until the form is submitted before they can continue. This breaks the user's experience and this makes the user feel that your application is slower than it actually is. Instead of doing this, you can show a notification or you can allow the user to use other parts of the application while waiting for this form to submit.

Finally you should note and keep it in mind that the user expectation changes often while they're on your application. The expectation of a user that just arrived on your application is very different from the expectation of a user that is at the checkout page. New users are less patient than users that are already committed to whatever you have to offer so you should keep this in mind and this will help you.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

React Advanced Conference 2022React Advanced Conference 2022
25 min
A Guide to React Rendering Behavior
Top Content
React is a library for "rendering" UI from components, but many users find themselves confused about how React rendering actually works. What do terms like "rendering", "reconciliation", "Fibers", and "committing" actually mean? When do renders happen? How does Context affect rendering, and how do libraries like Redux cause updates? In this talk, we'll clear up the confusion and provide a solid foundation for understanding when, why, and how React renders. We'll look at: - What "rendering" actually is - How React queues renders and the standard rendering behavior - How keys and component types are used in rendering - Techniques for optimizing render performance - How context usage affects rendering behavior| - How external libraries tie into React rendering
React Summit 2023React Summit 2023
32 min
Speeding Up Your React App With Less JavaScript
Too much JavaScript is getting you down? New frameworks promising no JavaScript look interesting, but you have an existing React application to maintain. What if Qwik React is your answer for faster applications startup and better user experience? Qwik React allows you to easily turn your React application into a collection of islands, which can be SSRed and delayed hydrated, and in some instances, hydration skipped altogether. And all of this in an incremental way without a rewrite.
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
React 18! Concurrent features! You might’ve already tried the new APIs like useTransition, or you might’ve just heard of them. But do you know how React 18 achieves the performance wins it brings with itself? In this talk, let’s peek under the hood of React 18’s performance features: - How React 18 lowers the time your page stays frozen (aka TBT) - What exactly happens in the main thread when you run useTransition() - What’s the catch with the improvements (there’s no free cake!), and why Vue.js and Preact straight refused to ship anything similar
JSNation 2022JSNation 2022
21 min
The Future of Performance Tooling
Top Content
Our understanding of performance & user-experience has heavily evolved over the years. Web Developer Tooling needs to similarly evolve to make sure it is user-centric, actionable and contextual where modern experiences are concerned. In this talk, Addy will walk you through Chrome and others have been thinking about this problem and what updates they've been making to performance tools to lower the friction for building great experiences on the web.

Workshops on related topic

React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Featured WorkshopFree
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
JSNation 2023JSNation 2023
170 min
Building WebApps That Light Up the Internet with QwikCity
Featured WorkshopFree
Building instant-on web applications at scale have been elusive. Real-world sites need tracking, analytics, and complex user interfaces and interactions. We always start with the best intentions but end up with a less-than-ideal site.
QwikCity is a new meta-framework that allows you to build large-scale applications with constant startup-up performance. We will look at how to build a QwikCity application and what makes it unique. The workshop will show you how to set up a QwikCitp project. How routing works with layout. The demo application will fetch data and present it to the user in an editable form. And finally, how one can use authentication. All of the basic parts for any large-scale applications.
Along the way, we will also look at what makes Qwik unique, and how resumability enables constant startup performance no matter the application complexity.
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
- Introduction- Prerequisites for the workshop- Fetching strategies: fundamentals- Fetching strategies – hands-on: fetch API, cache (static VS dynamic), revalidate, suspense (parallel data fetching)- Test your build and serve it on Vercel- Future: Server components VS Client components- Workshop easter egg (unrelated to the topic, calling out accessibility)- Wrapping up
React Advanced Conference 2023React Advanced Conference 2023
148 min
React Performance Debugging
Workshop
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
Vue.js London 2023Vue.js London 2023
49 min
Maximize App Performance by Optimizing Web Fonts
WorkshopFree
You've just landed on a web page and you try to click a certain element, but just before you do, an ad loads on top of it and you end up clicking that thing instead.
That…that’s a layout shift. Everyone, developers and users alike, know that layout shifts are bad. And the later they happen, the more disruptive they are to users. In this workshop we're going to look into how web fonts cause layout shifts and explore a few strategies of loading web fonts without causing big layout shifts.
Table of Contents:What’s CLS and how it’s calculated?How fonts can cause CLS?Font loading strategies for minimizing CLSRecap and conclusion
React Summit 2022React Summit 2022
50 min
High-performance Next.js
Workshop
Next.js is a compelling framework that makes many tasks effortless by providing many out-of-the-box solutions. But as soon as our app needs to scale, it is essential to maintain high performance without compromising maintenance and server costs. In this workshop, we will see how to analyze Next.js performances, resources usage, how to scale it, and how to make the right decisions while writing the application architecture.