permalink | layout | hasRandomBtn |
---|---|---|
/ |
default |
true |
The internet has become a bloated mess. Massive JavaScript libraries, countless client-side queries and overly complex frontend frameworks are par for the course these days.
When popular website like The New York Times are over 15MB in size (nearly 50% of which is JavaScript!), you know there's a problem. Why does any site need to be that huge? It's crazy.
But we can make a difference - all it takes is some optimisation. Do you really need that extra piece of JavaScript? Does your WordPress site need a theme that adds lots of functionality you're never going to use? Are those huge custom fonts really needed? Are your images optimised for the web?
The 512KB Club is a collection of performance-focused web pages from across the Internet. To qualify your website must satisfy both of the following requirements:
- It must be an actual site that contains a reasonable amount of information, not just a couple of links on a page (more info here).
- Your total UNCOMPRESSED web resources must not exceed 512KB.
{:.jump}
The Green Team (<100KB) ^ Top ^
-
{%- assign site_domains = site.data.sites | sort: 'size' -%}
{%- for item in site_domains -%}
{%- if item.size >= 0 and item.size <= 100 -%}
{% include teams.html %}
{%- endif -%}
{%- endfor -%}
The Orange Team (<250KB) ^ Top ^
-
{%- assign site_domains = site.data.sites | sort: 'size' -%}
{%- for item in site_domains -%}
{%- if item.size > 100 and item.size <= 250 -%}
{% include teams.html %}
{%- endif -%}
{%- endfor -%}
The Blue Team (<512KB) ^ Top ^
-
{%- assign site_domains = site.data.sites | sort: 'size' -%}
{%- for item in site_domains -%}
{%- if item.size > 250 and item.size <= 512 -%}
{% include teams.html %}
{%- endif -%}
{%- endfor -%}