Created
September 19, 2019 07:18
-
-
Save newbornfrontender/ee9fbacd707837899cf179d0c6248c68 to your computer and use it in GitHub Desktop.
PageSpeed Insights with reporting
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
const psi = require('psi'); | |
const url = 'https://github.com/GoogleChromeLabs/psi'; | |
(async () => { | |
const data = await psi(url, { | |
startegy: 'desktop', | |
}); | |
console.log(`Speed score: ${data.ruleGroups.SPEED.score}`); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment