A great web experience is a must for retaining viewers and turn them into potential leads. The key to achieving a great web experience is making sure that your website is optimized and tested thoroughly. Testing a small website manually can be easy but a large website that is controlled by a team through a CMS requires automated tools. These days most website owners are migrating towards Jamstack. Netlify is one of the best platforms to host Jamstack websites.
In this blog, you’ll learn about some of the best Netlify plugins that you can use to offer a great web experience to your website visitors.
Contents
1. Checklinks
Broken links on your website can result in embarrassment and a huge dropout rate. You can manually check for broken links on your website but it is better if you can automate this process. Checklinks helps to keep all the assets references correct and avoid 404 links to the internal pages, as well as the external pages your website links to. It can also report on inefficient redirect chains and potential mixed content warnings.
2. Deployment Hours
Sometimes, in the middle of the night, one of your team members can trigger a new deployment which can by chance break the website. What next? You receive a call and you have to fix the bug at the time you were about to sleep. So to block deployments that happen outside of the specified deployment hours range, you can use the Deployment Hours Netlify plugin.
3. HTML Validate
HTML Validate is a Netlify plugin allows you to validate your HTML website build. It is extremely important to test the validity of the HTML because not only it can break your website’s design structure but also affect the SEO as the search engine crawlers like GoogleBot won’t be able to parse your website correctly. For example,
<p>
<button>Click me!</button>
<div id="show-me">
Lorem ipsum
</div>
</p>
The validation of the above HTML will produce the following error in the terminal:
1:1 error Element <p> is implicitly closed by adjacent <div> no-implicit-close
2:2 error Button is missing type attribute button-type
6:4 error Unexpected close-tag, expected opening tag close-order
4. Lighthouse
Lighthouse is a Netlify plugin using which you can run an automated audit of your website after every build. You can set threshold values for each of the categories tested by Lighthouse that include performance, accessibility, best practices, SEO, and PWA if required. A new website build is only deployed if all the threshold values are met.
5. Minify HTML
When the website is built using a Static Site Generator like Jekyll, or Hugo, lots of whitespaces can creep into the HTML generated after the build. This whitespace means that the user has to download more bytes and you also waste your bandwidth. By minifying the HTML generated by your build, you can remove the redundant bytes from your website. This plugin minifies all HTML files in your publish directory before Netlify deploys them to its global CDN.