Skip To Main Content

tweaking JavaScript performance: tips and tricks from EPAM Anywhere

human head silhouette with brain and light bulb symbolshuman head silhouette with brain and light bulb symbols
Aleksandr, Senior Software Engineer
written bySenior Software Engineer, EPAM Anywhere

Every experienced developer knows how important it is to maintain the efficiency of a front-end application and what a pain in the neck that is. When it comes to loading time, the difference between a successful business and a disaster is mere seconds. So a front-end engineer is responsible for making sure that the client’s side provides a better user experience, higher conversions, and ultimately, happier customers.

In our previous article, Aleksandr Gabdrafikov, a Senior Software Engineer with EPAM Anywhere, provided his thoughts on how to assess where you stand in terms of front-end application performance. In this piece, Aleksandr shares tips and tricks, backed by years of experience, about where you may want to start improving javascript performance in your front-end application.

>16 milliseconds problem

JavaScript executes tasks using an event loop. The concept is simple - there’s an infinite loop that waits for a job to do, executes it, and returns to an idling state until a new job arrives.

The work that an event loop performs consists of discrete tasks (like an external script or a mouse move), microtasks, and the rendering of changes, which we’ll briefly discuss below.

Rendering never happens while any other task is executing, so it’s vital for a rich user experience that everything in an event loop happens timely. Rendering time is primarily affected by hardware specificities, like a screen refresh rate, and software specs, like energy saver mode or browser settings.

While today’s browsers do their best to show something to a user as soon as possible, most modern monitors support a refresh rate of 60 frames per second. This leaves us with only 16 milliseconds to perform a task that should be rendered so as not to disappoint a user with frame losses.

Most JS tasks are simple enough to be executed in such a short time window. But modern web applications become more complex daily, turning the client side into a feature-heavy extravaganza rich with calculations far exceeding our 16-milliseconds threshold.

Problem: processing big data arrays

Calculating piles of data can quickly exceed every possible limit and block our event loop work, especially if we attempt to do everything in a single stream. In such a case, the browser won’t be able to render anything until our heavy data work is done. As you can imagine, that does not provide the optimal user experience.

Solution. Break calculations into smaller chunks using setTimeout.

Solution. Another great solution is to use web workers. Web workers run scripts in the background so that they do not block tasks in the main thread, giving the browser a chance to show a picture as soon as possible. Read here to see more on web workers.

Problem: overusing third-party libraries

Optimization is far from universal among third-party libraries, even the popular ones. Let’s take, for example, a bcrypt that hashes a string with 13 hash-rounds. Each round takes about two seconds, blocking the main thread for quite a long time and stopping the execution of other connections.

Although not precisely a 16-milliseconds problem because this is a back-end process that does not affect rendering directly, encryption is an excellent example of how libraries that are not optimized can wreak havoc on your application.

Solution. Well, the best solution here is to choose optimized libraries. Try to find libraries specially developed for Node.js, since they use C++ bindings that allow parallelling threads and calculation up to three times faster.

Problem: layout thrashing

This is a typical performance issue, especially for single-page applications that build and destroy views on the fly. The layout is a step in a Render Queue when your browser figures out where each element of a page should appear, its size, and its relation to other objects.

Not surprisingly, the more DOM objects are on a page, the more time-consuming the process gets. The trickiest part, however, is that even the most insignificant change in a style invalidates previous calculations and triggers a whole new layout.

Solution. You want to be very attentive to arranging layout measuring (reading) and updating (writing) tasks. It’s a good practice to group these processes so you don’t force the layout multiple times. In a big project, doing so may take quite some time, but you’ll be surprised by how beneficial it can be.

Problem: big bundles

Big bundles are a big problem. The execution of JavaScript files consumes the most page loading time. It can be even more time-consuming than rendering a picture, since the latter is a basic collection of pixels on a screen, while the former fires an entire chain of events, including parsing and executing a script, creating scopes, etc.

So optimizing JS files is a crucial part of your application performance improvement. Use Webpack Bundle Analyzer to see the size of output files and what they are composed of.

Solution. For React, the best solution would be to use lazy loading. React.lazy allows you to use a dynamic import that knows how to execute code in chunks, instead of processing the whole file at once.

Solution. If reducing the size of files is impossible, try to cache them so they won’t be reloaded each time your application needs them. When caching files, you’ll use four headers:

  • ETag - an identifier that allows a web server to avoid resending a complete response if the content has not changed;
  • Cache-Control - holds instructions you can use to control your cache;
  • Expires - shows the lifetime of your cache; and
  • Last-Modified - contains the date and the time when a file was last modified.

Solution. Compress the file. While most browsers support both Gzip and Brotli compression formats, I advise you to use the latter, as it’s way more efficient.

Wrapup

When it comes to an efficient front-end application, thinking of improving JavaScript performance is the key. In this article, we’ve touched on only a few essential issues you will likely stumble upon. If you know of more interesting cases and valuable JavaScript performance tips, share them with us!

Aleksandr, Senior Software Engineer
written bySenior Software Engineer, EPAM Anywhere
our editorial policy

Explore our Editorial Policy to learn more about our standards for content creation.

read more