The rules

The rules are a mashup between classic YSlow rules & new sitespeed.io rules, all are based on performance best practices. The current version of the rules is sitespeed.io-desktop

Avoid slowing down the critical rendering path (criticalpath)

Every request fetched inside of HEAD, will postpone the rendering of the page! Do not load javascript synchronously inside of head, load files from the same domain as the main document (to avoid DNS lookups) and inline CSS for a really fast rendering path. The scoring system for this rule, will give you minus score for synchronously loaded javascript inside of head, css files requested inside of head and minus score for every DNS lookup inside of head. Weight: 15

Frontend single point of failure (spof)

A page can be stopped to be loaded in the browser, if a single script, css and in some cases a font couldn't be fetched or loading slow (the white screen of death), and that is something you really want to avoid. Never load 3rd party components inside of head! One important note, right now this rule treats domain and subdomains as ok, that match the document domain, all other domains is treated as a SPOF. The score is calculated like this: Synchronously loaded javascripts inside of head, hurts you the most, then CSS files inside of head hurts a little less, font face inside of css files further less, and least inline font face files. One rule SPOF rule missing is the IE specific feature, that a font face will be SPOF if a script is requested before the font face file. Weight: 5

Make fewer HTTP requests for CSS files (cssnumreq)

Decreasing the number of components on a page reduces the number of HTTP requests required to render the page, resulting in faster page loads. Combine your CSS files into as few as possible. Weight: 8

Make fewer HTTP requests for CSS image files (cssimagesnumreq)

Decreasing the number of components on a page reduces the number of HTTP requests required to render the page, resulting in faster page loads. Combine your CSS images files into as few CSS sprites as possible. Weight: 8

Make fewer synchronously HTTP requests for Javascript files (jsnumreq)

Decreasing the number of components on a page reduces the number of HTTP requests required to render the page, resulting in faster page loads. Combine your Javascript files into as few as possible (and load them asynchronously). Weight: 8

Avoid empty src or href (yemptysrc)

You may expect a browser to do nothing when it encounters an empty image src. However, it is not the case in most browsers. IE makes a request to the directory in which the page is located; Safari, Chrome, Firefox 3 and earlier make a request to the actual page itself. This behavior could possibly corrupt user data, waste server computing cycles generating a page that will never be viewed, and in the worst case, cripple your servers by sending a large amount of unexpected traffic. Weight: 30

Compress components with gzip (ycompress)

Compression reduces response times by reducing the size of the HTTP response. Gzip is the most popular and effective compression method currently available and generally reduces the response size by about 70%. Approximately 90% of today's Internet traffic travels through browsers that claim to support gzip. Weight: 8

Put CSS at top (ycsstop)

Moving style sheets to the document HEAD element helps pages appear to load quicker since this allows pages to render progressively. Weight: 4

Put JavaScript at bottom (yjsbottom)

JavaScript scripts block parallel downloads; that is, when a script is downloading, the browser will not start any other downloads. To help the page load faster, move scripts to the bottom of the page if they are deferrable. Weight: 4

Avoid CSS expressions (yexpressions)

CSS expressions (supported in IE beginning with Version 5) are a powerful, and dangerous, way to dynamically set CSS properties. These expressions are evaluated frequently: when the page is rendered and resized, when the page is scrolled, and even when the user moves the mouse over the page. These frequent evaluations degrade the user experience. Weight: 3

Reduce DNS lookups (ydns)

The Domain Name System (DNS) maps hostnames to IP addresses, just like phonebooks map people's names to their phone numbers. When you type URL www.yahoo.com into the browser, the browser contacts a DNS resolver that returns the server's IP address. DNS has a cost; typically it takes 20 to 120 milliseconds for it to look up the IP address for a hostname. The browser cannot download anything from the host until the lookup completes. Weight: 3

Minify JavaScript and CSS (yminify)

Minification removes unnecessary characters from a file to reduce its size, thereby improving load times. When a file is minified, comments and unneeded white space characters (space, newline, and tab) are removed. This improves response time since the size of the download files is reduced. Weight: 4

Never do redirects (redirects)

Redirects is bad for performance, specially for mobile. Weight: 4

Remove duplicate JavaScript and CSS (noduplicates)

Duplicate JavaScript and CSS files hurt performance by creating unnecessary HTTP requests (IE only) and wasted JavaScript execution (IE and Firefox). In IE, if an external script is included twice and is not cacheable, it generates two HTTP requests during page loading. Even if the script is cacheable, extra HTTP requests occur when the user reloads the page. In both IE and Firefox, duplicate JavaScript scripts cause wasted time evaluating the same scripts more than once. This redundant script execution happens regardless of whether the script is cacheable. Weight: 4

Configure entity tags (ETags) (yetags)

Entity tags (ETags) are a mechanism web servers and the browser use to determine whether a component in the browser's cache matches one on the origin server. Since ETags are typically constructed using attributes that make them unique to a specific server hosting a site, the tags will not match when a browser gets the original component from one server and later tries to validate that component on a different server. Weight: 2

Make AJAX cacheable (yxhr)

One of AJAX's benefits is it provides instantaneous feedback to the user because it requests information asynchronously from the backend web server. However, using AJAX does not guarantee the user will not wait for the asynchronous JavaScript and XML responses to return. Optimizing AJAX responses is important to improve performance, and making the responses cacheable is the best way to optimize them. Weight: 4

Use GET for AJAX requests (yxhrmethod)

When using the XMLHttpRequest object, the browser implements POST in two steps: (1) send the headers, and (2) send the data. It is better to use GET instead of POST since GET sends the headers and the data together (unless there are many cookies). IE's maximum URL length is 2 KB, so if you are sending more than this amount of data you may not be able to use GET. Weight: 3

Reduce the number of DOM elements (mindom)

A complex page means more bytes to download, and it also means slower DOM access in JavaScript. Reduce the number of DOM elements on the page to improve performance. Weight: 3

Avoid HTTP 404 (Not Found) error (yno404)

Making an HTTP request and receiving a 404 (Not Found) error is expensive and degrades the user experience. Some sites have helpful 404 messages (for example, "Did you mean ...?"), which may assist the user, but server resources are still wasted. Weight: 4

Reduce cookie size (ymincookie)

HTTP cookies are used for authentication, personalization, and other purposes. Cookie information is exchanged in the HTTP headers between web servers and the browser, so keeping the cookie size small minimizes the impact on response time. Weight: 3

Use cookie-free domains (ycookiefree)

When the browser requests a static image and sends cookies with the request, the server ignores the cookies. These cookies are unnecessary network traffic. To workaround this problem, make sure that static components are requested with cookie-free requests by creating a subdomain and hosting them there. Weight: 3

Avoid AlphaImageLoader filter (ynofilter)

The IE-proprietary AlphaImageLoader filter attempts to fix a problem with semi-transparent true color PNG files in IE versions less than Version 7. However, this filter blocks rendering and freezes the browser while the image is being downloaded. Additionally, it increases memory consumption. The problem is further multiplied because it is applied per element, not per image. Weight: 4

Never scale images in HTML (avoidscalingimages)

Images should always be sent with the correct size else the browser will download an image that is larger than necessary. This is more important today with responsive web design, meaning you want to avoid downloading non scaled images to a mobile phone or tablet. Note: This rule doesn check images with size 0 (images in carousels etc), so they will be missed by the rule. Weight: 5

Make favicon small and cacheable (yfavicon)

A favicon is an icon associated with a web page; this icon resides in the favicon.ico file in the server's root. Since the browser requests this file, it needs to be present; if it is missing, the browser returns a 404 error (see "Avoid HTTP 404 (Not Found) error" above). Since favicon.ico resides in the server's root, each time the browser requests this file, the cookies for the server's root are sent. Making the favicon small and reducing the cookie size for the server's root cookies improves performance for retrieving the favicon. Making favicon.ico cacheable avoids frequent requests for it. Weight: 2

Load third party javascript asynchronously (thirdpartyasyncjs)

Always load third party javascript asynchronously. Third parties that will be checked are twitter, facebook, google (api, analythics, ajax), linkedin, disqus, pinterest & jquery. Weight: 10

Avoid loading specific css for print (cssprint)

Loading a specific stylesheet for print, can block rendering in your browser (depending on browser version) and will for almost all browsers, block the onload event to fire (even though the print stylesheet is not even used!). Weight: 3

Load CSS in head from document domain (cssinheaddomain)

CSS files inside of HEAD should be loaded from the same domain as the main document, in order to avoid DNS lookups, because you want to have the HEAD part of the page finished as fast as possible, for the browser to be abe to start render the page. This is extra important for mobile. Weight: 8

Never load JS synchronously in head (syncjsinhead)

Javascript files should never be loaded synchronously in HEAD, because it will block the rendering of the page. Weight: 20

Avoid use of web fonts (avoidfont)

Avoid use of webfonts because they will decrease the performance of the page. Weight: 1

Reduce number of total requests (totalrequests)

Avoid to have too many requests on your page. The more requests, the slower the page will be for the end user. Weight: 10

Have expire headers for static components (expiresmod)

By adding HTTP expires headers to your static files, the files will be cached in the end users browser. Weight: 10

Have expires headers equals or longer than one year (longexpirehead)

Having really long cache headers are beneficial for caching. Weight: 5

Avoid DNS lookups when a page has few requests (nodnslookupswhenfewrequests)

If you have few requests on a page, they should all be on the same domain to avoid DNS lookups, because the lookups will cost much. Weight: 8

Do not load css files when the page has few request (inlinecsswhenfewrequest)

When a page has few requests (or actually maybe always if you dont have a massive amount of css), it is better to inline the css, to make the page to start render as early as possible. Weight: 7

Have a reasonable percentage of textual content compared to the rest of the page (textcontent)

Make sure the amount of HTML elements are too many compared to text content. Weight: 1

Always use latest versions of third party javascripts (thirdpartyversions)

Always use the latest & greatest versions of third party javascripts, this is really important for JQuery, since the latest versions is always faster & better. Weight: 5