web 2.0 expo: even faster web sites

34
Steve Souders [email protected] http://stevesouders.com/ Even Faster Web Sites best practices for faster pages Disclaimer: This content does not necessarily reflect the opinions of my

Upload: steve-souders

Post on 07-May-2015

17.665 views

Category:

Technology


4 download

TRANSCRIPT

Page 1: Web 2.0 Expo: Even Faster Web Sites

Steve [email protected]://stevesouders.com/

Even Faster Web Sites best practices for faster pages

Disclaimer: This content does not necessarily reflect the opinions of my employer.

Page 2: Web 2.0 Expo: Even Faster Web Sites

17%

83%

iGoogle, primed cache

The Importance of Frontend Performance

9% 91%

iGoogle, empty cache

Page 3: Web 2.0 Expo: Even Faster Web Sites

Time Spent on the Frontend

Empty Cache

Primed Cache

www.aol.com 97% 97%

www.ebay.com 95% 81%

www.facebook.com 95% 81%

www.google.com/search

47% 0%

search.live.com/results 67% 0%

www.msn.com 98% 94%

www.myspace.com 98% 98%

en.wikipedia.org/wiki 94% 91%

www.yahoo.com 97% 96%

www.youtube.com 98% 97%

Page 4: Web 2.0 Expo: Even Faster Web Sites

The Performance Golden Rule

80-90% of the end-user response time is spent on the frontend. Start there.

greater potential for improvement

simpler

proven to work

Page 5: Web 2.0 Expo: Even Faster Web Sites

14 Rules1. Make fewer HTTP

requests2. Use a CDN3. Add an Expires header4. Gzip components5. Put stylesheets at the

top6. Put scripts at the

bottom7. Avoid CSS expressions8. Make JS and CSS

external9. Reduce DNS lookups10.Minify JS11.Avoid redirects12.Remove duplicate

scripts13.Configure ETags14.Make AJAX cacheable

Page 6: Web 2.0 Expo: Even Faster Web Sites

High Performance Web Sites

YSlow

Page 7: Web 2.0 Expo: Even Faster Web Sites

http://conferences.oreilly.com/velocity/ 20% discount: vel08st

Page 8: Web 2.0 Expo: Even Faster Web Sites

Even Faster Web Sites

1. Split the initial payload2. Load scripts without blocking3. Don't scatter scripts4. Split dominant content domains5. Make static content cookie-free6. Reduce cookie weight7. Minify CSS8. Optimize images9. Use iframes sparingly10.To www or not to www

Page 9: Web 2.0 Expo: Even Faster Web Sites

AOLeBayFacebookMySpaceWikipediaYahoo!YouTube

Why focus on JavaScript?

Page 10: Web 2.0 Expo: Even Faster Web Sites

Scripts Block

<script src="A.js"> blocks parallel downloads and rendering

What's "Cuzillion"?

http://stevesouders.com/cuzillion/?ex=10008

Page 11: Web 2.0 Expo: Even Faster Web Sites

a tool for quickly constructing web pages to see how components interact

Open Source

http://stevesouders.com/cuzillion/

Cuzillion'cuz there are a zillion pages to check

Page 12: Web 2.0 Expo: Even Faster Web Sites

Split the Initial Payload: Facebook

43 external scripts, 550K uncompressed

9% of functionality is used before onload

Page 13: Web 2.0 Expo: Even Faster Web Sites

Unexecuted Payloadfunctions not used before

onload

www.aol.com 70%

www.ebay.com 56%

www.facebook.com 91%

www.google.com/search 55%

search.live.com/results 76%

www.msn.com 69%

www.myspace.com 82%

en.wikipedia.org/wiki 68%

www.yahoo.com 87%

www.youtube.com 82%73.6% avg

Page 14: Web 2.0 Expo: Even Faster Web Sites

Split the initial payload

split your JavaScript between what's needed to render the page and everything else

load "everything else" after the page is rendered

separate manually (Firebug); tools needed to automate this (Doloto from Microsoft)

load scripts without blocking – how?

Page 15: Web 2.0 Expo: Even Faster Web Sites

MSNScripts and other resources downloaded in parallel! How?var p=g.getElementsByTagName("HEAD")[0];var c=g.createElement("script");c.type="text/javascript";c.onreadystatechange=n;c.onerror=c.onload=k;c.src=e;p.appendChild(c)

MSN.com: Parallel Scripts

Page 16: Web 2.0 Expo: Even Faster Web Sites

Advanced Script Loading

XHR Eval

XHR Injection

Script in Iframe

Script DOM Element

Script Defer

document.write Script Tag

Page 17: Web 2.0 Expo: Even Faster Web Sites

XHR Eval

script must have same domain as main page

must refactor script

var xhrObj = getXHRObject();xhrObj.onreadystatechange = function() { if ( xhrObj.readyState != 4 ) return; eval(xhrObj.responseText); };xhrObj.open('GET', 'A.js', true);xhrObj.send('');

http://stevesouders.com/cuzillion/?ex=10009

Page 18: Web 2.0 Expo: Even Faster Web Sites

XHR Injectionvar xhrObj = getXHRObject();xhrObj.onreadystatechange = function() { if ( xhrObj.readyState != 4 ) return; var se=document.createElement('script'); document.getElementsByTagName('head') [0].appendChild(se); se.text = xhrObj.responseText; };xhrObj.open('GET', 'A.js', true);xhrObj.send('');

script must have same domain as main pagehttp://stevesouders.com/cuzillion/?ex=10015

Page 19: Web 2.0 Expo: Even Faster Web Sites

Script in Iframe<iframe src='A.html' width=0 height=0 frameborder=0 id=frame1></iframe>

iframe must have same domain as main page

must refactor script:// access iframe from main pagewindow.frames[0].createNewDiv();

// access main page from iframeparent.document.createElement('div');

http://stevesouders.com/cuzillion/?ex=10012

Page 20: Web 2.0 Expo: Even Faster Web Sites

Script DOM Elementvar se = document.createElement('script');se.src = 'http://anydomain.com/A.js';document.getElementsByTagName('head')[0].appendChild(se);

script and main page domains can differ

no need to refactor JavaScript

http://stevesouders.com/cuzillion/?ex=10010

Page 21: Web 2.0 Expo: Even Faster Web Sites

Script Defer<script defer src='A.js'></script>

only supported in IE

script and main page domains can differ

no need to refactor JavaScript

http://stevesouders.com/cuzillion/?ex=10013

Page 22: Web 2.0 Expo: Even Faster Web Sites

document.write Script Tagdocument.write("<scri" + "ipt type='text/javascript' src='A.js'>" + "</scri" + "ipt>");

parallelization only works in IE

parallel downloads for scripts, nothing else

all document.writes must be in same script block

http://stevesouders.com/cuzillion/?ex=10014

Page 23: Web 2.0 Expo: Even Faster Web Sites

Browser Busy Indicators

Page 24: Web 2.0 Expo: Even Faster Web Sites

Browser Busy Indicators

good to show busy indicators when the user needs feedback

bad when downloading in the background

Page 25: Web 2.0 Expo: Even Faster Web Sites

Ensure scripts execute in order:necessary when scripts have dependencies

IE: http://stevesouders.com/cuzillion/?ex=10017

FF: http://stevesouders.com/cuzillion/?ex=10018

Avoid scripts executing in order:faster – first script back is executed

immediatelyhttp://stevesouders.com/cuzillion/?ex=10019

Ensure/Avoid Ordered Execution

Page 26: Web 2.0 Expo: Even Faster Web Sites

Summary of Traits

*Only other document.write scripts are downloaded in parallel (in the same script block).

Page 27: Web 2.0 Expo: Even Faster Web Sites

and the winner is...

Page 28: Web 2.0 Expo: Even Faster Web Sites

Load Scripts without Blocking

don't let scripts block other downloads

you can still control execution order, busy indicators, and onload event

What about inline scripts?

Page 29: Web 2.0 Expo: Even Faster Web Sites

Inline Scripts Block Rendering

long executing inline scripts block rendering of the entire page

http://stevesouders.com/cuzillion/?ex=10020

workarounds: initiate execution with setTimeoutmove JavaScript to external script with

advanced downloading techniques

Page 30: Web 2.0 Expo: Even Faster Web Sites

Inline Scripts after Stylesheets Block Downloading

Firefox blocks parallel downloads when downloading stylesheets

IE doesn't...

...unless the stylesheet is followed by an inline script

http://stevesouders.com/cuzillion/?ex=10021

best to move inline scripts above stylesheets or below other resources

Page 31: Web 2.0 Expo: Even Faster Web Sites

eBayMSNMySpaceWikipedia

Examples of Scattered Scripts

Page 32: Web 2.0 Expo: Even Faster Web Sites

Don't Scatter Scripts

remember inline scripts carry a cost

avoid long-executing inline scripts

don't put inline scripts between stylesheets and other resources

Page 33: Web 2.0 Expo: Even Faster Web Sites

Takeaways

focus on the frontend

run YSlow: http://developer.yahoo.com/yslow

Velocity: register before May 5

this year's focus: JavaScriptSplit the Initial PayloadLoad Scripts without BlockingDon't Scatter Scripts

speed matters

you CAN make your site even faster!

Page 34: Web 2.0 Expo: Even Faster Web Sites

Steve [email protected]://stevesouders.com/