--- layout: post title: "Chasing Performance" date: 2017-11-20 --- ## Update This post is no longer relevant since this blog has been redesigned since. I'm keeping this article up as a point of reference. - - - So I decided to participate in Smashing Mag's Front End Performance Challenge, not only for the potential of winning the prize but to further experiment with optimizing my site. (Web performance is a passion of mine) Below I will breakdown the before & after statistics of my personal site and what changes I made in great detail. I will be using both my homepage and the image-heavy article I recently wrote, The Death of Personality, as the basis for my tests. ### Lighthouse Score - Homepage Full source original stats // Full source updated stats
Stats Before After
Performance 82 98
Accessibility 100 100
Best Practices 75 94
### Lighthouse Score - Article Page Full source original stats // Full source updated stats
Stats Before After
Performance 39 96
Accessibility 97 100
Best Practices 69 94
### Web Page Test - Homepage Full source original stats // Full source updated stats
Stats Before After
Initial Load Time 0.91s 0.41s
Visually Complete 0.9s 0.7s
Fully Loaded 0.94s 0.65s
### Web Page Test - Article Page Full source original stats // Full source updated stats
Stats Before After
Initial Load Time 4.7s 0.5s
Visually Complete 3.1s 0.8s
Fully Loaded 4.8s 0.67s
### Quick Look Though my homepage only made some minor speed performance enhancements, my article post's initial load time was slimmed down by a **whopping 4.2 seconds!** That's pretty incredible and very noticeable from an end-user's perspective. ### So - What Changed? Webfonts I'm not using any webfonts but instead defaulting to the user's OS System Fonts. I love custom typefaces but performance takes just too much of a hit on my personal site to bother with them. body { font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif,"Sans Serif",Icons; } For reference, there are some things you should to look out for when using custom typefaces: - Readability and accessibility - Possible extra overhead loading in a custom @font-face - Try to avoid any FOUT, FOIT, FOFT - Don't go down the rabbit hole of using 3rd party plugins to optimize something as basic as a typeface ### Critical CSS This part was easy. In order to avoid the weird styling 'pops' present on some websites when initially loading with slow connections, it's best to place all your most critical styling inline and then load your external CSS once everything else has loaded. On top of that, I decided to also implement Filament Group's loadCSS function to load my CSS asynchronously. If you are not currently using this in any of your projects; stop reading this and go do it! It's a game changer. ### Critical JavaScript My personal site only uses a small amount of JavaScript on the article post Jekyll template pages. By using the defer property I can be sure to load the IntersectionObserver API polyfill after the rest of the DOM as finished loading.