Lighthouse Best Practices Cheat Sheet
Checklist of general practices to improve the overall code health of your web app
February 7th, 2022
February 7th, 2022
Use Lighthouse to check if your website is following the list of best practices. You will see the same exact information in the Best Practices report.
Here some of the best practices audits to improve the code health of your web page. To learn more, check this page where I based the categorization.
Specifying a doctype prevents the browser from switching to quirks-mode.
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns.
Image display dimensions should match natural aspect ratio.
A character encoding declaration is required. It can be done with a <meta>
tag in the first 1024 bytes of the HTML or in the Content-Type HTTP response header.
Preload optional
fonts so first-time visitors may use them.
The unload
event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Consider using the pagehide
or visibilitychange
events instead.
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs.
All front-end JavaScript libraries detected on the page.
A strong Content Security Policy (CSP) significantly reduces the risk of cross-site scripting (XSS) attacks.
Add rel="noopener"
or rel="noreferrer"
to any external links to improve performance and prevent security vulnerabilities.
Some third-party scripts may contain known security vulnerabilities that are easily identified and exploited by attackers.
Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity.
Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead.
Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead.
Preventing password pasting undermines good security policy.
Application Cache is deprecated.
Deprecated APIs will eventually be removed from the browser.
All front-end JavaScript libraries detected on the page.
Issues logged to the Issues
panel in Chrome Devtools indicate unresolved problems. They can come from network request failures, insufficient security controls, and other browser concerns. Open up the Issues panel in Chrome DevTools for more details on each issue.
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits.