Skill Badges
Web Component - Journeyman
Performance Test - Original
What this is about
This is the original page that is loading a couple web components. They're small, so it's already really fast. I tracked the load time in an incognito window. Here are the results:
Is isn't a big difference, but when you have many instances of custom components loading on the page, it can start to add up. Using async on imports and scripts, ensuring there's no unresolved
attribute on the body
, and lazy loading the polyfills are simple things that can be done to improve the performance of a web page.
Visit the improved performance page here.