Google Lighthouse
Lighthouse is a tool from Google that helps developers improve web applications quality. It offers an audit category for PWAs, providing focused suggestions.
We'll cover the following...
What is Lighthouse?
Lighthouse is an excellent tool that is constantly evolving and upgrading its offered set of features. We can use it for auditing any web page, even if it requires authentication.
There are different audits categories we can choose from:
- Performance
- Accessibility
- SEO
- Best practices
- Progressive web apps
It is also possible to run Lighthouse in different contexts. The simplest one is from Chrome DevTools, but it is also possible from the command line or as a Node module.
Once the page analysis process is finished, the output becomes a series of audits, passed or not, providing warnings and suggestions based on best practices to improve our web app under different aspects. Each suggestion point comes with a ...