front end optimization, 'the cloud' can help you!

36
FRONT END OPTIMIZATION, 'THE CLOUD' CAN HELP YOU! CLOUDPARTY 2014 - BOLOGNA Created by / Marco Vito Moscaritolo @mavimo

Upload: marco-moscaritolo

Post on 17-Dec-2014

747 views

Category:

Technology


0 download

DESCRIPTION

Come possiamo rendere la user interaction delle nostre web application ottimale? Perfezionando tutto quello che riguarda l'interazione che il client ha con le risorse disponibili in remoto. Vedremo quali sono i principali aspetti da prendere in considerazione, le ottimizzazioni attuabili e come queste possono essere messe in atto sfruttando ciò che i principali cloud providers ci mettono a disposizione, ma sopratutto i principali limiti di queste soluzioni ed i workaround che possiamo mettere in atto per ovviarvi.

TRANSCRIPT

Page 1: Front End Optimization, 'The Cloud' can help you!

FRONT END OPTIMIZATION,'THE CLOUD'

CAN HELP YOU!CLOUDPARTY 2014 - BOLOGNA

Created by / Marco Vito Moscaritolo @mavimo

Page 2: Front End Optimization, 'The Cloud' can help you!

Marco Vito MoscaritoloWeb Developer

Founder & Dev @

@[email protected]

Agavee

Page 3: Front End Optimization, 'The Cloud' can help you!

Intro

Anatomy of a page request

Frontend optimization rules

Using cloud services

Demo

References

Page 4: Front End Optimization, 'The Cloud' can help you!

INTRO

Page 5: Front End Optimization, 'The Cloud' can help you!

PAGE WEIGHT & REQEST NUMBER INCREASE

Page weight grows ~30% year-over-year

Page 6: Front End Optimization, 'The Cloud' can help you!

WHAT USERS THINK?

t < 0.1s Instant

0.1s < t < 0.3s Small perceptible delay

0.3s < t < 1s Machine is working

1s < t < 10s Linkely mental context switch

t > 10s Task is abbandoned

Page 7: Front End Optimization, 'The Cloud' can help you!

WHAT I NEED TO WORK ON PERFORMANCE?% conversions for every second reduced in specified range:

from 15 seconds to 7 seconds from seconds 7 to 5 from seconds 4 to 2

Reduce from 10s to 3s increase conversion rate.

Page 8: Front End Optimization, 'The Cloud' can help you!

ANATOMY OF A WEBREQUEST

Page 9: Front End Optimization, 'The Cloud' can help you!

SINGLE REQUEST

Page 10: Front End Optimization, 'The Cloud' can help you!

PAGE REQUEST TREE

Page 11: Front End Optimization, 'The Cloud' can help you!

BROWSER RENDERING ENGINE FLOW

Page 12: Front End Optimization, 'The Cloud' can help you!

PAGE RENDERING TIMELINE

DOM content loaded DOM load event

Page 13: Front End Optimization, 'The Cloud' can help you!

FRONTENDOPTIMIZATION RULES

Page 14: Front End Optimization, 'The Cloud' can help you!

REDUCE DATA TO DOWNLOADCompress content (gzip)Minify JSCompress CSSImage optimization

Page 15: Front End Optimization, 'The Cloud' can help you!

REDUCE NUMBER OF REQUESTAggregate CSSAggregate JSSprite style imagesUse service to include libraries/fonts

Page 16: Front End Optimization, 'The Cloud' can help you!

OPTIMIZE REQUESTSUse separate domain for assetsUse a CDNLocal caching

Page 17: Front End Optimization, 'The Cloud' can help you!

CODE OPTIMIZATIONPostpone Javascript executionReduce number of DOM elementsReduce deep path in CSS selectors

Page 18: Front End Optimization, 'The Cloud' can help you!

USING CLOUD SERVICES

Page 19: Front End Optimization, 'The Cloud' can help you!

CONTENT DELIVERY (1)Using public CDN services like:

//google.com/fonts//jsdelivr.com//ajax.googleapis.com//ajax.aspnetcdn.com//netdna.bootstrapcdn.com

Page 20: Front End Optimization, 'The Cloud' can help you!

CONTENT DELIVERY (2)Host private file in CDNs like:

Cloud Files + AkamaiS3 + CloudFrontGoogle Cloud Storage

Page 21: Front End Optimization, 'The Cloud' can help you!

IMAGE OPTIMIZATIONReduce bandwidth consumption:

resrc.itcloudinary.com

Page 22: Front End Optimization, 'The Cloud' can help you!

CONTENT OPTIMIZATIONSome service manipulate your content to optimize client side

processing like Google Page Speed (beta)

Page 23: Front End Optimization, 'The Cloud' can help you!

TIPS & TRICKS

Set expire headesCompress data BEFORE upload on cloud storageLazy loading images

You need to pay per request, bandwidth consumption and storage.

Page 24: Front End Optimization, 'The Cloud' can help you!

DEMO

Page 25: Front End Optimization, 'The Cloud' can help you!
Page 26: Front End Optimization, 'The Cloud' can help you!
Page 27: Front End Optimization, 'The Cloud' can help you!
Page 28: Front End Optimization, 'The Cloud' can help you!
Page 29: Front End Optimization, 'The Cloud' can help you!
Page 30: Front End Optimization, 'The Cloud' can help you!
Page 31: Front End Optimization, 'The Cloud' can help you!
Page 32: Front End Optimization, 'The Cloud' can help you!
Page 33: Front End Optimization, 'The Cloud' can help you!

QUESTION?

Page 34: Front End Optimization, 'The Cloud' can help you!

TOOLSdevelopers.google.com/speed/pagespeed/insightstools.pingdom.comwebpagetest.org/developer.yahoo.com/yslowgtmetrix.comsitespeed.io

Page 36: Front End Optimization, 'The Cloud' can help you!

THE ENDBY MARCO VITO MOSCARITOLO / MAVIMO.ORG