Performance
· 26 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.
4.11 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
6.33 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
88 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.206
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
5.39 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.
6.96 s
Page Load Progression
BThird-Party Impact59% third-party, 0 ms blockingREVIEW
CJS Execution CostAction1633ms total JS executionREVIEW
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://pullitpacks.com/ | 521ms | 211ms | 3ms | 1st |
| Unattributable | 444ms | 40ms | 0ms | 3rd |
| https://pullitpacks.com/assets/aws-DSCIpVe1.js | 434ms | 387ms | 4ms | 1st |
| https://www.redditstatic.com/ads/pixel.js | 234ms | 205ms | 10ms | 3rd |
BJS Bundles11 scripts, 125 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://pullitpacks.com/assets/aws-DSCIpVe1.js | 193 KB | 98 KB (51%) | ✓ | 1st |
| https://pullitpacks.com/assets/index-Cb44Q5Rp.js | 64 KB | 26 KB (42%) | ✓ | 1st |
| https://pullitpacks.com/assets/query-xgxtOe41.js | 15 KB | — | ✓ | 1st |
| https://pullitpacks.com/assets/react-D1eGN7U_.js | 22 KB | — | ✓ | 1st |
| https://www.redditstatic.com/ads/pixel.js | 19 KB | — | ✓ | 3rd |
| https://pullitpacks.com/assets/BrowsePage-BJo63B2M.js | 3 KB | — | ✓ | 1st |
| https://pullitpacks.com/assets/queries-BQnAo6ek.js | 1 KB | — | ✓ | 1st |
| https://pullitpacks.com/assets/bulbapedia-dADAZNiR.js | 1 KB | — | ✓ | 1st |
| https://pullitpacks.com/assets/ResponsiveImage-CmeuCn3w.js | 1 KB | — | ✓ | 1st |
| https://pullitpacks.com/assets/cdn-I21UqnB0.js | 1 KB | — | ✓ | 1st |
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
CCompression AlgorithmActionMain response served uncompressedREVIEW
BServer-Timing ObservabilityNo Server-Timing header foundREVIEW
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
APage Weight Budget1001 KB transferred, 46 requestsPASS
A+Text CompressionAll text resources are compressedPASS
A+Image Optimization19 images, 0 KB saveablePASS
A+Font Loading2 fonts (69 KB)PASS
Web fonts
2
69 KB total
Render-blocking
0
of 2
Dominant font-display
swap
Most common across fonts
Font loading timeline
Optimization checklist
- Preload critical fonts (priority=high)
- Use woff2 format for all fonts
- Set font-display to swap, optional, or fallback
- Subset large fonts (≤100 KB each)
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource Hints2 hints, 0 missing preconnectsPASS
Current Resource Hints
2 resource hints configured
A+HTTP/3 (QUIC)HTTP/3 advertised via Alt-SvcPASS
A+LCP Image PreloadLCP preload audit not availablePASS
A+Main HTML Cache-ControlMain HTML max-age=0 (≤ 5min) is appropriatePASS
A+Server Response Intelligence2 server-response signal(s) detectedPASS
APage Weight Inventory46 resources · 1001 KB · 125 KB savings availablePASS
~124.9 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 46 resources | 1001.2 KiB | ||||||
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
A+JavaScript BlockingNo render-blocking JS or document.write usage detectedPASS
A+CSS Performance DepthNo CSS performance depth issues detectedPASS
AHTTP Cachingpublic, max-age=0, s-maxage=60PASS
public, max-age=0, s-maxage=60
| Directive | Value | Meaning |
|---|---|---|
| public | — | Any cache may store this response |
| max-age | 0 | Cache for 0 seconds |
| s-maxage | 60 | CDN caches for 1 minute |
Network Waterfall46 requests over 6025msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 444ms | 0 KB | — | $6/mo | Costly |
www.redditstatic.com www.redditstatic.com | Other | 234ms | 19 KB | — | $3/mo | Costly |
These scripts may cost more than they're worth
- Unattributable adds 444ms and costs ~$6/month
- www.redditstatic.com adds 234ms and costs ~$3/month
41% of JavaScript execution time comes from third-party scripts.
Third-party scripts (analytics, ads, social, A/B testing) often dominate execution time — every one is a perf-and-privacy tax.
Learn more ▾ ▴
Each third-party script is a black box: you don't control when it loads, what it executes, or how much it grows. They often account for a major share of total blocking time on average sites (HTTP Archive's Web Almanac documents the trend). Audit which ones you actually need, defer the rest, and use facade patterns (lite-youtube, lite-vimeo) for embedded media.
Source: web.dev / HTTP Archive Web Almanac
Unattributable 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
www.redditstatic.com takes 234ms 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
Real-User Performance (CrUX)Field metrics from the Chrome User Experience ReportINFO
Chrome User Experience (CrUX)
Real-user metrics from the Chrome UX Report (2026-04-11 — 2026-05-08)
LCP (p75)
4477 ms
43% good
INP (p75)
107 ms
91% good
CLS (p75)
0.230
54% good
FCP (p75)
1517 ms
TTFB (p75)
834 ms