DEV Community

Cover image for 5 Netlify plugins to ensure a great Web Experience
Ravgeet Dhillon
Ravgeet Dhillon

Posted on • Originally published at ravsam.in on

5 Netlify plugins to ensure a great Web Experience

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 shifting towards JAMstack. Netlify is one of the best platforms to host JAMstack websites. In this blog, we will list some of the best Netlify plugins that you can use to offer a great web experience to your viewers.

Broken links on your website can result in embarrassment and a huge dropout rate. You can manually check broken links on your website but it is better if we can automate the 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.

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? Your team members are called and you have to fix the bug at the time you were about to sleep. So to blocks deployments that happen outside of the specified deployment hours range, you can use the Deployment Hours Netlify plugin.

3. HTML Validate

HTML Validate 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 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>

Enter fullscreen mode Exit fullscreen mode

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

Enter fullscreen mode Exit fullscreen mode

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.

RavSam website performance measured by Lighthouse
Our website performance measured by Lighthouse

5. Minify HTML

When the website is built using a Static Site Generator like Jekyll, Hugo, a lot 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, which is to be deployed by Netlify to its global CDN.

Cheers!

About Us

We are helping businesses around the world by migrating their WordPress websites to JAMstack websites. They have recorded an over 80% increase in conversions and are reaping the benefits of static websites that are made dynamic through the APIs. Get in touch with us to know more about our website development process.

We provide Web Design, Web Development, Mobile App Development, Software Development, and Automation Services. We have been rated as one of the fastest-growing companies in India. We have been able to generate seven-figure revenue due to our customer-centric services powered by passion and skillset. We are always looking forward to work on great ideas. If you are looking for an application development company, you are most welcome to contact us.

Top comments (0)