Performance
· 14 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.
539 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
2.97 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
52 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.429
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.
3.72 s
Page Load Progression
FPage Weight BudgetAction9.7 MB transferred, 136 requestsFIX
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
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
Subset fonts to include only used characters, or switch to system font stacks.
Font payload is large — subset to used glyphs only, or fall back to system fonts (zero load time).
Source: web.dev font loading
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 ImpactAction69% third-party, 0 ms blockingFIX
BImage Optimization53 images, 0 KB saveableREVIEW
CJS Execution CostAction1720ms total JS executionREVIEW
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://www.nasa.gov/ | 909ms | 9ms | 4ms | 1st |
| Unattributable | 232ms | 2ms | 0ms | 3rd |
| https://www.nasa.gov/_static/??-eJyNzk0OAiEMBeALyRCNGXRhPEsdGwbSFoXi3+nF6MKVmDSvm+81tdeTCTJRPWKxsc25Yr5/1sBBhlgW9hcyHHwGxW88JVEUtTojt4pAgVfPUzoAGYFLBzJKNZq8J+xIqrck7/zjAQ2MjyS9o2WGjKakKQA1uufd0rn1uBo3bhuftz5wvg== | 159ms | 110ms | 11ms | 1st |
| https://www.googletagmanager.com/gtag/js?id=G-82GWVTTXCZ&cx=c>m=4e6411 | 126ms | 94ms | 21ms | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-NLJ258M | 123ms | 97ms | 23ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-CSLL4ZEK4L | 108ms | 97ms | 11ms | 3rd |
| https://www.youtube.com/s/player/f4c47414/www-widgetapi.vflset/www-widgetapi.js | 62ms | 56ms | 2ms | 3rd |
CJS BundlesAction28 scripts, 217 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.googletagmanager.com/gtag/js?id=G-82GWVTTXCZ&cx=c>m=4e6411 | 158 KB | 63 KB (40%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-NLJ258M | 128 KB | 61 KB (47%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-CSLL4ZEK4L | 146 KB | 58 KB (40%) | ✓ | 3rd |
| https://www.nasa.gov/_static/??-eJyNzk0OAiEMBeALyRCNGXRhPEsdGwbSFoXi3+nF6MKVmDSvm+81tdeTCTJRPWKxsc25Yr5/1sBBhlgW9hcyHHwGxW88JVEUtTojt4pAgVfPUzoAGYFLBzJKNZq8J+xIqrck7/zjAQ2MjyS9o2WGjKakKQA1uufd0rn1uBo3bhuftz5wvg== | 63 KB | 36 KB (57%) | ✓ | 1st |
| https://static.doubleclick.net/instream/ad_status.js | 0 KB | — | ✓ | 3rd |
| https://www.youtube.com/s/_/ytembeds/_/js/k=ytembeds.base.en_US.EkHW-yt-vuI.2021.O/am=AAAABQ/d=1/exm=base,root/ed=1/br=1/rs=AGKMywHBjli5eOPfTkoQm_Ycsv7nAWPvPQ/m=r78Drb | 130 KB | — | ✓ | 3rd |
| https://www.nasa.gov/wp-content/plugins/accessibility-checker/build/frontendFixes.bundle.js?ver=1.38.0 | 4 KB | — | ✓ | 1st |
| https://www.nasa.gov/_static/??-eJyVjrEOwjAMRH+INCqodEIMSPxH4xjq1kmqOKHw96SVYIGli+U7+d5Zz5OC4BP6pCfOd/KiOwAUIUNM6aWgRxgxqikGbTKx1be4BuyVniiVyd4yVoPs9B+W76RThgOMhSuCSTSE7JMNs1ew+Pry0ZdFbgAxPVClPiKWa87O/zobaMJUnlln5WhL0iGm0orfpWTP7lS3bVM3++OhHd4L4YZp | 16 KB | — | ✓ | 1st |
| https://dap.digitalgov.gov/web-vitals/dist/web-vitals.attribution.iife.js | 4 KB | — | ✓ | 3rd |
| https://www.nasa.gov/wp-content/plugins/wp-parsely/build/loader.js?ver=ecf94842061bea03d54b | 2 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
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
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
A+Text CompressionAll text resources are compressedPASS
A+Font Loading8 fonts (228 KB)PASS
Web fonts
8
228 KB total
Render-blocking
0
of 8
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
AHTTP Cachingmax-age=300 (5 minutes)PASS
max-age=300, must-revalidate
| Directive | Value | Meaning |
|---|---|---|
| max-age | 300 | Cache for 5 minutes |
| must-revalidate | — | Must recheck with server after expiry |
Network Waterfall136 requests over 0msINFO
Performance analysis not available for this result.
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 232ms | 0 KB | — | $3/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 126ms | 158 KB | 40% | $2/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 123ms | 128 KB | 47% | $2/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 108ms | 146 KB | 40% | $1/mo | Optional |
www.youtube.com www.youtube.com | Other | 62ms | 11 KB | — | $1/mo | Optional |
These scripts may cost more than they're worth
- Unattributable adds 232ms and costs ~$3/month
Unattributable takes 232ms 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