Created
January 2, 2015 12:18
-
-
Save gokhanbarisaker/7d14fe27cef3d1ac8ca3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Iterate through the localizedRuleNames in ruleResults and | |
// return an array of their strings. | |
function ruleList(results) { | |
// Your code goes here! | |
var rules = []; | |
var ruleResults = results.formattedResults.ruleResults; | |
for (var key in ruleResults) { | |
rules.push(ruleResults[key].localizedRuleName); | |
} | |
return rules; | |
} | |
// Iterate through pageStats in the psiResults object and | |
// return the total number of bytes to load the website. | |
function totalBytes(results) { | |
// Your code goes here! | |
var totalBytes = 0; | |
var pageStats = results.pageStats; | |
for (var key in pageStats) { | |
if (~key.toLowerCase().indexOf('bytes')) { | |
totalBytes += parseInt(pageStats[key], 10); | |
} | |
} | |
return totalBytes; | |
} | |
// Below, you'll find a sample PS Insights JSON | |
// and two console.log statements to help you test your code! | |
psinsights = { | |
"kind": "pagespeedonline#result", | |
"id": "/speed/pagespeed", | |
"responseCode": 200, | |
"title": "PageSpeed Home", | |
"score": 90, | |
"pageStats": { | |
"numberResources": 22, | |
"numberHosts": 7, | |
"totalRequestBytes": "2761", | |
"numberStaticResources": 16, | |
"htmlResponseBytes": "91981", | |
"cssResponseBytes": "37728", | |
"imageResponseBytes": "13909", | |
"javascriptResponseBytes": "247214", | |
"otherResponseBytes": "8804", | |
"numberJsResources": 6, | |
"numberCssResources": 2 | |
}, | |
"formattedResults": { | |
"locale": "en_US", | |
"ruleResults": { | |
"AvoidBadRequests": { | |
"localizedRuleName": "Avoid bad requests", | |
"ruleImpact": 0.0 | |
}, | |
"MinifyJavaScript": { | |
"localizedRuleName": "Minify JavaScript", | |
"ruleImpact": 0.1417, | |
"urlBlocks": [ | |
{ | |
"header": { | |
"format": "Minifying the following JavaScript resources could reduce their size by $1 ($2% reduction).", | |
"args": [ | |
{ | |
"type": "BYTES", | |
"value": "1.3KiB" | |
}, | |
{ | |
"type": "INT_LITERAL", | |
"value": "0" | |
} | |
] | |
}, | |
"urls": [ | |
{ | |
"result": { | |
"format": "Minifying $1 could save $2 ($3% reduction).", | |
"args": [ | |
{ | |
"type": "URL", | |
"value": "http://code.google.com/js/codesite_tail.pack.04102009.js" | |
}, | |
{ | |
"type": "BYTES", | |
"value": "717B" | |
}, | |
{ | |
"type": "INT_LITERAL", | |
"value": "1" | |
} | |
] | |
} | |
}, | |
{ | |
"result": { | |
"format": "Minifying $1 could save $2 ($3% reduction).", | |
"args": [ | |
{ | |
"type": "URL", | |
"value": "http://www.gmodules.com/ig/proxy?url\u003dhttp%3A%2F%2Fjqueryjs.googlecode.com%2Ffiles%2Fjquery-1.2.6.min.js" | |
}, | |
{ | |
"type": "BYTES", | |
"value": "258B" | |
}, | |
{ | |
"type": "INT_LITERAL", | |
"value": "0" | |
} | |
] | |
} | |
} | |
] | |
} | |
] | |
}, | |
"SpriteImages": { | |
"localizedRuleName": "Combine images into CSS sprites", | |
"ruleImpact": 0.0 | |
} | |
} | |
}, | |
"version": { | |
"major": 1, | |
"minor": 11 | |
} | |
}; | |
// Try logging the outputs below to test your code! | |
console.log(ruleList(psinsights)); | |
console.log(totalBytes(psinsights)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
UD 804, What's next, Pagespeed Insights problem
References;