experience of your applications and provide you insights into what needs improving Web vitals is an initiative by google for keep track of metrics that matter the most in their applications. These metrics are called core web vitals
render time of the largest visible element in the viewport. LCP measures the loading performance of your application. For a good user experience, LCP should occur within the first 2.5 seconds after the page starts loading
click of a link or a button to respond or for the browser to trigger the event listener. FID can occur when the browser is running a blocking operation in the background LCP measures the interactivity of your application and should occur within the first 100 milliseconds after the page starts loading First Input Delay (FID)
or when DOM elements gets dynamically added to the page. Cumulative Layout Shift helps you address this problem by measuring how often it's occurring for real users Cumulative Layout Shift (CLS)
shift scores for every unexpected layout shift that occurs during the entire lifespan of a page. To provide a good user experience, sites should strive to have a CLS score of 0.1 or less. Cumulative Layout Shift (CLS) contd;
quality of web pages. You can run it against any web page, public or requiring authentication. It has audits for performance, accessibility, progressive web apps, SEO and more. You can use lighthouse from the chrome devtools, on the command line, or as a node module
enter the URL of the website you want to audit • Open the devtools: cmd + shift + i on mac or ctrl + shift + i on windows • Head over to the lighthouse or audit tab. • Click on generate report to get started with the site audit