Performance
· 15 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.Performance-focused optimization plan with CWV assessment, top offenders, and time estimates
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
1.20 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.76 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
0 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.002
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.30 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
1.76 s
Page Load Progression
DThird-Party ImpactAction100% third-party, 0 ms blockingFIX
FHTTP CachingActionNo cache headersFIX
No Cache-Control header
Adding a Cache-Control header can significantly improve repeat-visit performance.
BPage Weight Budget1.2 MB transferred, 117 requestsREVIEW
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.
Source: web.dev
Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.
High HTTP request count — bundling, sprite-ing, and HTTP/2 server push can reduce per-request overhead.
Source: web.dev
BJS Execution Cost604ms total JS executionREVIEW
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://github.com/jquery/sizzle/wiki | 444ms | 1ms | 0ms | 3rd |
| Unattributable | 85ms | 1ms | 0ms | 3rd |
| https://github.githubassets.com/assets/behaviors-e2f9128395d9f8b3.js | 75ms | 37ms | 4ms | 3rd |
CJS BundlesAction88 scripts, 238 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://github.githubassets.com/assets/primer-react-6dbbf6a6b62127f5.js | 124 KB | 66 KB (53%) | ✓ | 3rd |
| https://github.githubassets.com/assets/react-lib-e36eebdcabb31afd.js | 88 KB | 63 KB (73%) | ✓ | 3rd |
| https://github.githubassets.com/assets/react-core-fa9bebcd564984e3.js | 59 KB | 44 KB (75%) | ✓ | 3rd |
| https://github.githubassets.com/assets/behaviors-e2f9128395d9f8b3.js | 54 KB | 43 KB (80%) | ✓ | 3rd |
| https://github.githubassets.com/assets/53102-7adf5a6968114b74.js | 31 KB | 21 KB (70%) | ✓ | 3rd |
| https://github.githubassets.com/assets/19930-d7474e22a5e73a83.js | 4 KB | — | ✓ | 3rd |
| https://github.githubassets.com/assets/octicons-react-bb57c7bed5998408.js | 100 KB | — | ✓ | 3rd |
| https://github.githubassets.com/assets/fetch-utilities-23fca2e84f65970f.js | 3 KB | — | ✓ | 3rd |
| https://github.githubassets.com/assets/85924-e131bec5f99667e1.js | 5 KB | — | ✓ | 3rd |
| https://github.githubassets.com/assets/28839-734cb6d8a7150172.js | 6 KB | — | ✓ | 3rd |
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
CPage Weight InventoryAction117 resources · 1.2 MB · 238 KB savings availableREVIEW
~237.6 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 117 resources | 1.2 MiB | ||||||
A+Text CompressionAll text resources are compressedPASS
A+Image OptimizationNo images on this pagePASS
A+Font LoadingNo web fonts (system fonts)PASS
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource HintsNo optimization neededPASS
A+Green HostingWhether the site is served from green-energy infrastructurePASS
Green Hosting
This site is hosted on green energy infrastructure
Provider: Cloudflare
Network Waterfall117 requests over 1721msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
github.com github.com | Other | 444ms | 52 KB | — | €5/mo | Costly |
Unattributable Unattributable | Other | 85ms | 0 KB | — | €1/mo | Optional |
github.githubassets.com github.githubassets.com | Other | 75ms | 54 KB | 80% | €1/mo | Optional |
These scripts may cost more than they're worth
- github.com adds 444ms and costs ~€5/month
100% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
When third-party JS execution time exceeds your own, performance gains from frontend work are capped by code you don't own.
Learn more ▾ ▴
Every millisecond of third-party JS competes with your own for main-thread time. If their share is bigger than yours, optimization on your code base barely moves the needle. Audit, defer, or remove third-parties before further frontend optimization. Use Lighthouse's third-party audit to identify the worst offenders.
Source: web.dev
github.com takes 444ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
80% of github.githubassets.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev