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.23 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
2.45 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
816 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.
3.61 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.
7.99 s
Page Load Progression
FPage Weight BudgetAction6.0 MB transferred, 223 requestsFIX
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
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Image bandwidth is high — modern formats (WebP/AVIF) and resizing typically cut it 50%+.
Source: web.dev
Remove unused CSS rules with tools like PurgeCSS to reduce stylesheet size.
CSS bundle is large — purge unused styles (PurgeCSS, Tailwind JIT) to reduce CSS payload.
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
DThird-Party ImpactAction100% third-party, 0 ms blockingFIX
FJS Execution CostAction5426ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://www.pmi.org/ | 1634ms | 24ms | 1ms | 3rd |
| https://www.pmi.org/clientCode/headless/client/libs/logrocket____vol26RRkwZyIicS3CgJQb1VGyAgjBVeQdrvE9Yaklq8.js | 805ms | 716ms | 2ms | 3rd |
| https://www.pmi.org/clientCode/headless/client/libs/react____kzZ2Y5wg4t96VkdBEjLnrVx9VQx8zdHyJeN5GFaA2BE.js | 694ms | 485ms | 3ms | 3rd |
| Unattributable | 363ms | 23ms | 0ms | 3rd |
| https://www.pmi.org/clientCode/headless/client/spx-headless/sharedComponentFactory____458eaf70bd8f0a43.js | 203ms | 157ms | 38ms | 3rd |
| https://www.pmi.org/clientCode/headless/client/website-headless/sharedComponentFactory____cfa0d1a107974f5c.js | 195ms | 148ms | 47ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=AW-958030971&cx=c>m=4e64h1 | 144ms | 114ms | 12ms | 3rd |
| https://www.pmi.org/clientCode/headless/client/libs/pmi-shared-base____sYJPibkp9ZHq1iHAe5bkRTMmZHOGyjTDMfy7TAtl7Tc.js | 122ms | 85ms | 36ms | 3rd |
| https://cdn.lrkt-in.com/logger-1.min.js | 116ms | 93ms | 18ms | 3rd |
| https://www.pmi.org/cdn-cgi/challenge-platform/scripts/jsd/main.js | 111ms | 95ms | 1ms | 3rd |
Showing top 10 of 24 scripts
FJS BundlesAction104 scripts, 2.2 MB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.pmi.org/clientCode/headless/client/website-headless/sharedComponentFactory____cfa0d1a107974f5c.js | 317 KB | 237 KB (75%) | ✓ | 3rd |
| https://www.pmi.org/clientCode/headless/client/libs/pmi-shared-base____sYJPibkp9ZHq1iHAe5bkRTMmZHOGyjTDMfy7TAtl7Tc.js | 267 KB | 201 KB (76%) | ✓ | 3rd |
| https://lpcdn.lpsnmedia.net/le_unified_window/10.47.0-release_2318786578/desktopEmbedded.js?version=10.47.0-release_2318786578 | 265 KB | 182 KB (69%) | ✓ | 3rd |
| https://www.pmi.org/clientCode/headless/client/spx-headless/sharedComponentFactory____458eaf70bd8f0a43.js | 227 KB | 169 KB (75%) | ✓ | 3rd |
| https://www.pmi.org/clientCode/headless/client/libs/pmi-catalyst____paLQkfjRKT1uqYb8SL7zNdLNeX1sVe4ZL3TX7foG5w4.js | 204 KB | 162 KB (80%) | ✓ | 3rd |
| https://www.pmi.org/clientCode/headless/client/website-headless/client.index____fc746b5ded0fb483.js | 126 KB | 92 KB (73%) | ✓ | 3rd |
| https://translate.googleapis.com/_/translate_http/_/js/k=translate_http.tr.en_US.VRmZKspy56E.O/am=AAAAAQ/d=1/exm=el_conf/ed=1/rs=AN8SPfr19FYIaQWCvBYtl2_gp8OxhpIGyQ/m=el_main | 119 KB | 91 KB (77%) | ✓ | 3rd |
| https://www.pmi.org/clientCode/headless/client/libs/coveo-headless____uAlhtr6TESUsi58oMP2prHuaVvRn-DxPPxnQKg7AvP0.js | 108 KB | 88 KB (82%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=AW-958030971%20async | 134 KB | 80 KB (59%) | ✓ | 3rd |
| https://www.pmi.org/clientCode/headless/client/libs/react-router____23tHJ2CxKQGRuN8V60ij5RxZ8PsoJ_b1mtkeQmRQqCU.js | 72 KB | 68 KB (96%) | ✓ | 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
FPage Weight InventoryAction223 resources · 6.0 MB · 2.2 MB savings availableFIX
~2.2 MiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 223 resources | 6.0 MiB | ||||||
FHTTP CachingActionNo cache headersFIX
No Cache-Control header
Adding a Cache-Control header can significantly improve repeat-visit performance.
BImage Optimization35 images, 0 KB saveableREVIEW
A+Text CompressionAll text resources are compressedPASS
A+Font Loading10 fonts (291 KB)PASS
Web fonts
10
291 KB total
Render-blocking
0
of 10
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 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 Waterfall223 requests over 7205msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
www.pmi.org www.pmi.org | Other | 1634ms | 82 KB | — | $22/mo | Costly |
www.pmi.org www.pmi.org | Other | 805ms | 15 KB | — | $11/mo | Costly |
www.pmi.org www.pmi.org | Other | 694ms | 45 KB | — | $9/mo | Costly |
Unattributable Unattributable | Other | 363ms | 0 KB | — | $5/mo | Costly |
www.pmi.org www.pmi.org | Other | 203ms | 227 KB | 75% | $3/mo | Costly |
www.pmi.org www.pmi.org | Other | 195ms | 317 KB | 75% | $3/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 144ms | 149 KB | 35% | $2/mo | Optional |
www.pmi.org www.pmi.org | Other | 122ms | 267 KB | 76% | $2/mo | Optional |
cdn.lrkt-in.com cdn.lrkt-in.com | Other | 116ms | 124 KB | 19% | $2/mo | Optional |
www.pmi.org www.pmi.org | Other | 111ms | 0 KB | — | $1/mo | Optional |
translate.googleapis.com translate.googleapis.com | Other | 109ms | 119 KB | 77% | $1/mo | Optional |
assets.adobedtm.com assets.adobedtm.com | Other | 105ms | 86 KB | 29% | $1/mo | Optional |
cdn.wisepops.com cdn.wisepops.com | Other | 103ms | 77 KB | 36% | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 91ms | 137 KB | 45% | $1/mo | Optional |
www.pmi.org www.pmi.org | Other | 90ms | 204 KB | 80% | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 71ms | 126 KB | 46% | $1/mo | Optional |
www.pmi.org www.pmi.org | Other | 65ms | 106 KB | 63% | $1/mo | Optional |
Facebook Pixel connect.facebook.net | Advertising | 63ms | 97 KB | 37% | $1/mo | Optional |
lpcdn.lpsnmedia.net lpcdn.lpsnmedia.net | Other | 62ms | 265 KB | 69% | $1/mo | Optional |
cicsstatic.pmi.org cicsstatic.pmi.org | Other | 61ms | 0 KB | 66% | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 57ms | 131 KB | 43% | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 56ms | 134 KB | 59% | $1/mo | Optional |
www.pmi.org www.pmi.org | Other | 56ms | 126 KB | 73% | $1/mo | Optional |
www.pmi.org www.pmi.org | Other | 50ms | 84 KB | 51% | $1/mo | Optional |
These scripts may cost more than they're worth
- www.pmi.org adds 1634ms and costs ~$22/month
- www.pmi.org adds 805ms and costs ~$11/month
- www.pmi.org adds 694ms and costs ~$9/month
- Unattributable adds 363ms and costs ~$5/month
- www.pmi.org adds 203ms and costs ~$3/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
www.pmi.org takes 1634ms 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.pmi.org takes 805ms 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.pmi.org takes 694ms 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
Unattributable takes 363ms 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.pmi.org takes 203ms 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
75% of www.pmi.org'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
75% of www.pmi.org'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
76% of www.pmi.org'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
77% of translate.googleapis.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
80% of www.pmi.org'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
63% of www.pmi.org'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
69% of lpcdn.lpsnmedia.net'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
66% of cicsstatic.pmi.org'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
59% of Google Tag Manager'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
73% of www.pmi.org'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
51% of www.pmi.org'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