Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 2.37 KB

index.md

File metadata and controls

58 lines (48 loc) · 2.37 KB
permalink layout
/
default

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 online newspapers like The Guardian are over 4MB in size, you know there's a problem. Why does an online newspaper need to be over 4MB in size? 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:

  1. 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).
  2. 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 -%}