wps-website-performance-scores
v1.1.3
Published
Website Performance Scores (WPS) is a Puppeteer-based library developed in order to measure the performance of a website using WebVitals scores (like Lighthouse).
Downloads
7
Maintainers
Readme
// v4
WPS - Website Performance Scores
Description
- Website Performance Scores (WPS) is a Puppeteer-based library developed in order to measure the performance of a website using WebVitals scores (like Lighthouse).
Concept
- this is a prototype
- NPM package page
- Git Repo
- GOAL: feed this a webpage (through a
config.json
file) and WPS should return it's WebVitals (through Lighthouse) score - STACK:
Usage
- go to
config.json
and set yourtargetWebsite
- on your terminal, navigate to the root and use
npm start
to initialise the process - the console will show your lighthouse scores. They will also be available in the
./logs/scoreLogs.json
file (or whichever file you've determined in thelogFilePath
inconfig.json
)
Dataflow
main.ts
- instantiates WPS with
./config.json
and immediately runs it
- instantiates WPS with
wps.ts
constructor()
from the classwps
deconstructs the datatargetWebsite
andlogFilePath
from./config.json
and saves it for internal userun()
method is activatedgetTargetScore()
method is activated- uses puppeteer to launch the browser
- calls on lighthouse to use the browser and load the URL to extract json info
- closes browser
- gets relevant data (
report
) - returns
report
run()
savesreport
asinitialReport
formatReport()
method is activated- filters only the
id
s and itsscores
- saved them as an object formatted as
{ id: score }
- returns that object with all
id
s and its respective scores (formattedReport
)
- filters only the
run()
savesformattedReport
and passes it on for local savingsaveReportToScoreLog()
method gets activated- it uses the FileSystem API(
fs
) to append theformattedReport
to the file underlogFilePath
(set in./config.json
)run()
displaysformattedReport
in the console to signalise the operation is complete
- it uses the FileSystem API(
example data returned from formatReport()
{
website: 'https://www.google.com/',
scoreDate: '2022.01.03-19:1:40',
performance: 0.32,
accessibility: 0.7,
best_practices: 0.75,
seo: 0.85,
pwa: 0.3
}
example data returned from getTargetScore()
{
performance: {
title: 'Performance',
supportedModes: [Array],
auditRefs: [Array],
id: 'performance',
score: 0.31
},
accessibility: {
title: 'Accessibility',
description: 'These checks highlight opportunities to [improve the accessibility of your web app](https://developers.google.com/web/fundamentals/accessibility). Only a subset of accessibility issues can be automatically detected so manual testing is also encouraged.',
manualDescription: 'These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://developers.google.com/web/fundamentals/accessibility/how-to-review).',
supportedModes: [Array],
auditRefs: [Array],
id: 'accessibility',
score: 0.7
},
'best-practices': {
title: 'Best Practices',
supportedModes: [Array],
auditRefs: [Array],
id: 'best-practices',
score: 0.75
},
seo: {
title: 'SEO',
description: 'These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on [Core Web Vitals](https://web.dev/learn-web-vitals/). [Learn more](https://support.google.com/webmasters/answer/35769).',
manualDescription: 'Run these additional validators on your site to check additional SEO best practices.',
supportedModes: [Array],
auditRefs: [Array],
id: 'seo',
score: 0.85
},
pwa: {
title: 'PWA',
description: 'These checks validate the aspects of a Progressive Web App. [Learn more](https://developers.google.com/web/progressive-web-apps/checklist).',
manualDescription: "These checks are required by the baseline [PWA Checklist](https://developers.google.com/web/progressive-web-apps/checklist) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually.",
supportedModes: [Array],
auditRefs: [Array],
id: 'pwa',
score: 0.3
}
}