Skip to content

Instantly share code, notes, and snippets.

@newbornfrontender
Created September 19, 2019 07:18
Show Gist options
  • Save newbornfrontender/ee9fbacd707837899cf179d0c6248c68 to your computer and use it in GitHub Desktop.
Save newbornfrontender/ee9fbacd707837899cf179d0c6248c68 to your computer and use it in GitHub Desktop.
PageSpeed Insights with reporting
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