Lighthouse Desktop
· 0 checks — Desktop Lighthouse audit -- Performance, Accessibility, Best Practices, and SEO category breakdown.Detailed Report
Audit breakdown by category with detailed findings.
Performance
Insights
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Performance issues directly impact user engagement and conversion rates.
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Why SumUp chose CockroachDB for global payments div > div.px-4 > a.block > div.flex-col | /00voh0j35590/pWhamaJCHLEGGFoU2I4VQ/79f8ebc7a6b8f93101e81... | 924.2 KiB | 835.2 KiB |
Kaizen Gaming bets big on distributed SQL div > div.px-4 > a.block > div.flex-col | /00voh0j35590/2VLJeuuowXJmc4jNwmL0jY/826b08fa0ecab538afd9... | 811.0 KiB | 721.5 KiB |
div.mx-auto > div.relative > a.absolute > div.pointer-events-none div.mx-auto > div.relative > a.absolute > div.pointer-events-none | www.cockroachlabs.com/images/modernize-db-arch.png | 720.9 KiB | 441.1 KiB |
How Booking.com simplified order management with CockroachDB div > div.px-4 > a.block > div.flex-col | /00voh0j35590/5ZjXkUkGtfZMEPqTdoJxSX/2cd960437381b83300dd... | 291.7 KiB | 202.2 KiB |
Group 19399 div.false > div.flex > div.relative > img.size-full | /_next/image/?url=https%3A%2F%2Fimages.ctfassets.net%2F00... | 45.5 KiB | 27.8 KiB |
Group 19476 div.false > div.flex > div.relative > img.size-full | /_next/image/?url=https%3A%2F%2Fimages.ctfassets.net%2F00... | 26.3 KiB | 12.2 KiB |
Group 19399 div.false > div.flex > div.relative > img.size-full | /_next/image/?url=https%3A%2F%2Fimages.ctfassets.net%2F00... | 23.9 KiB | 12.1 KiB |
Project Logo span.m_80f1301b > span.m_811560b9 > div.m_8bffd616 > img.m_9e117634 | www.cockroachlabs.com/img/ai-chat-logo-m.png | 6.3 KiB | 6.3 KiB |
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| www.cockroachlabs.com/_next/static/css/512bc4cbff012306.css | 1.1 KiB | |
| www.cockroachlabs.com/_next/static/css/084fe83a55d1c444.css | 38.1 KiB | 64 ms |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| www.cockroachlabs.com/ | 679 ms |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Diagnostics
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 2.3 s |
| Other | 502 ms |
| Script Parsing & Compilation | 302 ms |
| Style & Layout | 219 ms |
| Garbage Collection | 140 ms |
| Parse HTML & CSS | 37 ms |
| Rendering | 34 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /* ----- CSS reset ----- */ *, *::before, *::after { box-sizing: border-box; } … | 45.2 KiB | 6.3 KiB |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /* ----- CSS reset ----- */ *, *::before, *::after { box-sizing: border-box; } … | 45.2 KiB | 44.3 KiB |
| www.cockroachlabs.com/_next/static/css/084fe83a55d1c444.css | 37.9 KiB | 34.1 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
More information about the performance of your application. These numbers don't directly affect the Performance score.
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
ARIA
Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. Learn more about ARIA roles and required parent element.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Product nav.flex > div.mt-3 > div.flex > div.flex |
Solutions nav.flex > div.mt-3 > div.flex > div.flex |
Resources nav.flex > div.mt-3 > div.flex > div.flex |
Pricing nav.flex > div.mt-3 > div.flex > div.flex |
Company nav.flex > div.mt-3 > div.flex > div.flex |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Navigation
A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more about the `tabindex` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Solutions nav.flex > div.mt-3 > div.flex > div.flex |
Resources nav.flex > div.mt-3 > div.flex > div.flex |
Pricing nav.flex > div.mt-3 > div.flex > div.flex |
Company nav.flex > div.mt-3 > div.flex > div.flex |
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Product div.grid > div.space-y-8 > div > h4.mb-[7px] |
These are opportunities to improve keyboard navigation in your application.
Best practices
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Product nav.flex > div.mt-3 > div.flex > div.flex |
Solutions nav.flex > div.mt-3 > div.flex > div.flex |
Resources nav.flex > div.mt-3 > div.flex > div.flex |
Pricing nav.flex > div.mt-3 > div.flex > div.flex |
Company nav.flex > div.mt-3 > div.flex > div.flex |
Start free div.flex > div.relative > div.mt-6 > a.inline-block |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
How Booking.com simplified order management with CockroachDB div.slick-slide > div > div.px-4 > a.block |
Kaizen Gaming bets big on distributed SQL div.slick-slide > div > div.px-4 > a.block |
Why SumUp chose CockroachDB for global payments div.slick-slide > div > div.px-4 > a.block |
FINTECH
Why these three fintech companies scaled with distributed SQL
From re… div.relative > div.grid > div > a.group |
PRODUCT
Vertical vs. horizontal scaling: What’s the difference and which is be… div.relative > div.grid > div.flex > a.group |
AI
1,000+ tech leaders know AI is scaling faster than systems can adapt div.relative > div.grid > div.flex > a.group |
ENGINEERING
Rethinking the Global Reporting Platform div.relative > div.grid > div.flex > a.group |
SCALE & RESILIENCE
SQL DROP COLUMN and ADD COLUMN: adding and removing columns… div.relative > div.grid > div.flex > a.group |
Best Practices
General
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | |
| AttributionReporting | connect.facebook.net/en_US/fbevents.js line 273, col 769 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Access to XMLHttpRequest at 'https://secure.adnxs.com/getuidj' from origin 'https://www.cockroachlabs.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. | |
Failed to load resource: net::ERR_FAILED | |
Failed to load resource: the server responded with a status of 404 () | |
boards.greenhouse.io/embed/job_board/js?for=cockroachlabs line 149, col 22 | Uncaught TypeError: Cannot set properties of null (setting 'innerHTML') |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
SEO
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. Learn more about Google Search Essentials.
Content Best Practices
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| www.cockroachlabs.com/privacy/ | here |
Format your HTML in a way that enables crawlers to better understand your app’s content.