Google has a new tool (currently in Beta) to analyze websites using their lighthouse API. The tool can be found at web.dev.
Google says their web platform team has spent over a decade learning about user needs. And they say they want to make it as easy as possible for developers to master today's defining standards. The tool is designed to provide actionable guidance and analysis.
It is easy to run an audit - just enter a url and press the "run audit" button. Scores are provided for performance, accessibility, best practices, and SEO. Each score ranges from 0 to 100. And specific feedback is provided about the underlying reason for each score, and how it might be improved.
I found the results of testing a few sites quite interesting, and hope you will as well. I invite you to audit a site of yours and share your opinion of the audit here.
For this week's poll, please audit the home page of your main website and vote based on the Performance score. And please also share all your scores and your thoughts about them in a post.
For the GPWA home page the scores were as follows:
Performance: 74 (we got dinged for render-blocking resources)
Accessibility: 42 (we got dinged for not having image alt attributes and having form attributes without labels)
Best Practices: 57 (we got dinged for not yet using HTTPS)
SEO: 80 (we got dinged for not having a viewport meta tag)
In the case of the GPWA home page, the first recommendation is to eliminate render-blocking resources. The general overview states "Fast page loads result in higher user engagement, more pageviews, and improved conversion. You can improve your page load speed by inlining links and scripts that are required for first paint, and deferring those that aren't." Lighthouse lists all of the render-blocking links or scripts it has detected, and provides guidance regarding how to make improvements.
Michael