Performance Improvement for Web Applications

Web Vitals

FCP (First Contentful Paint) (Response Quick)

LCP (Largest Contentful Paint) (get to the point)
Big Images/article
CLS (Cumulative layout Shift) (Don’t move Elements)

First input Delay (Don’t load Too Much Data)
Brower in the background …


This content originally appeared on DEV Community and was authored by Ashutosh Sarangi

Web Vitals

  1. FCP (First Contentful Paint) (Response Quick)
  2. LCP (Largest Contentful Paint) (get to the point) Big Images/article
  3. CLS (Cumulative layout Shift) (Don't move Elements)
  4. First input Delay (Don't load Too Much Data) Brower in the background handling the Asyc works and because of that it puts delay

NOTE:-

Cumulative layout Shift

  1. The movement that impacts the page elements, in the entire lifetime of the document the user sees.
  2. also, this is costly as the layout will change, and then it it do the Layout, paint, and composite again. Also post that if there are any damaged pixels it will re-render again

Bench Marks

LCP:

good < 2.5 sec < Need Improvement < 4.0 sec < Poor

FID:

good < 100 M.sec < Need Improvement < 300 M.sec < Poor

CLS:-

good < 0.1 sec < Need Improvement < 0.25 sec < Poor

*tools:- *

field data (Actual user data) for Application performance monitoring

  1. Light House (Local Performance Monitoring is specific depending on your system preferences)
  2. https://developer.chrome.com/docs/crux/dashboard/
  3. https://www.lightest.app/ (Compare with similar applications)
  4. https://www.performancebudget.io/

Improving on FCP:

  1. If your users are far away from the server better to use CDNS.
  2. Its is the big impact (Can consider gzip as well)

Improving LCP

  1. Defer resources until later (defer/ async in the script)
<script src="/assets/js/abc.js" defer></script>
// For Other image tags / video links from I frame we can use intersection Observer to handle when the view port intersect with the element.

2. Optimize images (Very Important)
As I mentioned above along with this even we load bit latter but some images are 2Mb size and which is not needed

there are 2 approaches

a. use image compressor (tinyPng) (imagemin npm package)
b. use kind of srcset for various responsive designs,as mentioned below

<img
data-src="pic-1200.min.png"
src="" 
data-srcset=""
data-srcset="pic-600.png 600w, pic-900.png 900w, pic-1200.png 1200w"
sizes="(max-width: 600px) 600px, (max-width: 900px) 900px, 1200px"
/>

3. reduce request Overhead

preload and preconnect

<link rel="preconnect" href="https://fonts.gstatic.com" />
    <link rel="preload" href="/assets/css/index.css" />

Improving CLS

  1. Please don't move Elements , i.e thumb rule
  2. for Advertise we need to mention this is the max height with allocated div
  3. Let's say the cookie banner we can fix ed at the bottom. Then there would be a major boost compared to we show them on top and when the user clicks accept and disappear our layout structure will not impacted
  4. We can target for 0.01 (0.059) (CLS)(LightBox)
  5. for image tags we can specify the width and height attributes

Improving FID

a. Don't defere everything to the end, because let's say your LCP is done and the user trying to interact with the UI but as we did everything defer the Browser till loading those on background so not a good Idea to all to defer.

Only not required immediately js files we can defer.

Reference:-
https://frontendmasters.com/courses/web-perf


This content originally appeared on DEV Community and was authored by Ashutosh Sarangi


Print Share Comment Cite Upload Translate Updates
APA

Ashutosh Sarangi | Sciencx (2024-08-24T18:26:10+00:00) Performance Improvement for Web Applications. Retrieved from https://www.scien.cx/2024/08/24/performance-improvement-for-web-applications/

MLA
" » Performance Improvement for Web Applications." Ashutosh Sarangi | Sciencx - Saturday August 24, 2024, https://www.scien.cx/2024/08/24/performance-improvement-for-web-applications/
HARVARD
Ashutosh Sarangi | Sciencx Saturday August 24, 2024 » Performance Improvement for Web Applications., viewed ,<https://www.scien.cx/2024/08/24/performance-improvement-for-web-applications/>
VANCOUVER
Ashutosh Sarangi | Sciencx - » Performance Improvement for Web Applications. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/08/24/performance-improvement-for-web-applications/
CHICAGO
" » Performance Improvement for Web Applications." Ashutosh Sarangi | Sciencx - Accessed . https://www.scien.cx/2024/08/24/performance-improvement-for-web-applications/
IEEE
" » Performance Improvement for Web Applications." Ashutosh Sarangi | Sciencx [Online]. Available: https://www.scien.cx/2024/08/24/performance-improvement-for-web-applications/. [Accessed: ]
rf:citation
» Performance Improvement for Web Applications | Ashutosh Sarangi | Sciencx | https://www.scien.cx/2024/08/24/performance-improvement-for-web-applications/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.