Mobile 375 × 812

Desktop 1440 × 900

Score: 76 / 100
Based on 8 categories, 0 sections
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
No Content-Security-Policy header found
No <main> landmark found
No H1 heading found
Cross-Origin-Embedder-Policy header is missing
[](https://beavercheck.com/results/372e29da-d6ca-7eda-2c5f-9140009a30e9)<a href="https://beavercheck.com/results/372e29da-d6ca-7eda-2c5f-9140009a30e9"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fwww.turso.tech" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fwww.turso.techThis badge auto-updates with your latest scan result.
Thanks for your feedback!
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.31 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
3.06 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.15 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.31 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.
9.82 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
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
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
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.
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.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| us-assets.i.posthog.com/static/posthog-recorder.js?v=1.364.7 | 14400.0 s | 88.1 KiB |
| us-assets.i.posthog.com/static/surveys.js?v=1.364.7 | 300.0 s | 31.9 KiB |
| /array/phc_pMhv2miXNG72Aj2fSt7Dpg4tBDCyBxyQh9VCqFBg2Jax/c... | 300.0 s | 1.1 KiB |
| ddwl4m2hdecbv.cloudfront.net/b/4O7Z0HEZ3XNX/4O7Z0HEZ3XNX.js.gz | 1296000.0 s | 10.2 KiB |
| static.reo.dev/81f7759ee14008a/reo.js | 0.0 ms | 691 B |
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.
| URL | Transfer Size | Duration |
|---|---|---|
| turso.tech/_next/static/css/3add334ee59f67ac.css | 890 B | 150 ms |
| turso.tech/_next/static/css/afdece2027c1be2f.css | 14.0 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
| URL | Time Spent |
|---|---|
| www.turso.tech/ | 770 ms |
| turso.tech/ | 0.0 ms |
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.
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.
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.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| turso.tech/_next/static/chunks/9da6db1e-f59eaee33fee26f7.js | 535 ms | 516 ms | 17 ms |
| www.googletagmanager.com/gtag/js?id=G-0REW30XRXK&cx=c>m=4e6461h2 | 505 ms | 416 ms | 86 ms |
| turso.tech/ | 447 ms | 19 ms | 91 ms |
| turso.tech/_next/static/chunks/2117-e0472066d7c3cf60.js | 415 ms | 385 ms | 12 ms |
| www.googletagmanager.com/gtag/js?id=G-J0W6Q1ZBNN | 411 ms | 352 ms | 54 ms |
| Unattributable | 287 ms | 12 ms | 0.0 ms |
| turso.tech/_next/static/chunks/fd9d1056-1a2b78fbc8e86811.js | 140 ms | 123 ms | 15 ms |
| www.googletagmanager.com/gtm.js?id=GTM-WW757Q5 | 110 ms | 62 ms | 46 ms |
| us-assets.i.posthog.com/static/posthog-recorder.js?v=1.364.7 | 54 ms | 30 ms | 22 ms |
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
| Category | Time Spent |
|---|---|
| Script Evaluation | 2.0 s |
| Script Parsing & Compilation | 387 ms |
| Other | 316 ms |
| Style & Layout | 198 ms |
| Parse HTML & CSS | 105 ms |
| Garbage Collection | 34 ms |
| Rendering | 27 ms |
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.
| URL | Transfer Size | Est Savings |
|---|---|---|
| turso.tech/_next/static/css/afdece2027c1be2f.css | 13.8 KiB | 11.3 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-0REW30XRXK&cx=c>m=4e6461h2 | 173.0 KiB | 72.0 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-WW757Q5 | 152.1 KiB | 69.7 KiB |
| www.googletagmanager.com/gtag/js?id=G-J0W6Q1ZBNN | 156.7 KiB | 64.1 KiB |
| us-assets.i.posthog.com/static/posthog-recorder.js?v=1.364.7 | 88.0 KiB | 56.2 KiB |
| turso.tech/_next/static/chunks/9da6db1e-f59eaee33fee26f7.js | 57.9 KiB | 30.7 KiB |
| us-assets.i.posthog.com/static/surveys.js?v=1.364.7 | 31.8 KiB | 25.4 KiB |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
| Failing Elements |
|---|
BETA div.rounded-2xl > div.p-6 > div.inline-flex > span.rounded-full |
BETA div.grid > div > div.p-6 > span.rounded-full |
Read Manual div.grid > div > div.p-6 > a.rounded-full |
OPEN SOURCE div.grid > div.rounded-2xl > div.p-6 > span.rounded-full |
Fork Repository div.grid > div.rounded-2xl > div.p-6 > a.rounded-full |
These are opportunities to improve the legibility of your content.
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
| Failing Elements |
|---|
html.__variable_f367f3 html.__variable_f367f3 |
These items highlight common accessibility best practices.
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.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
| Link destination | Link Text |
|---|---|
| github.com/tursodatabase/turso-go | Go |
| docs.turso.tech/sdk/go | Go |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
728 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
968 ms
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
161 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
728 ms
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
2.43 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
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
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
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.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| us-assets.i.posthog.com/static/posthog-recorder.js?v=1.364.7 | 14400.0 s | 88.1 KiB |
| us-assets.i.posthog.com/static/surveys.js?v=1.364.7 | 300.0 s | 31.9 KiB |
| /array/phc_pMhv2miXNG72Aj2fSt7Dpg4tBDCyBxyQh9VCqFBg2Jax/c... | 300.0 s | 1.1 KiB |
| ddwl4m2hdecbv.cloudfront.net/b/4O7Z0HEZ3XNX/4O7Z0HEZ3XNX.js.gz | 1296000.0 s | 10.2 KiB |
| static.reo.dev/81f7759ee14008a/reo.js | 0.0 ms | 692 B |
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Pierre-Antoine Urvoy div.group > div.flex > div.w-12 > img.w-12 | /_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fpierre-antoi... | 30.1 KiB | 29.8 KiB |
Simon Henrikson div.group > div.flex > div.w-12 > img.w-12 | /_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fsimon-henrik... | 24.2 KiB | 24.1 KiB |
Guillermo Rauch div.group > div.flex > div.w-12 > img.w-12 | /_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fguillermo-ra... | 17.0 KiB | 16.8 KiB |
Luke Kim div.group > div.flex > div.w-12 > img.w-12 | /_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fluke-kim.bba... | 13.4 KiB | 13.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.
| URL | Transfer Size |
|---|---|
| turso.tech/_next/static/css/3add334ee59f67ac.css | 886 B |
| turso.tech/_next/static/css/afdece2027c1be2f.css | 14.0 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
| URL | Time Spent |
|---|---|
| www.turso.tech/ | 336 ms |
| turso.tech/ | 0.0 ms |
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.
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.
| URL | Transfer Size | Est Savings |
|---|---|---|
| turso.tech/_next/static/css/afdece2027c1be2f.css | 13.8 KiB | 10.9 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-0REW30XRXK&cx=c>m=4e6460 | 173.0 KiB | 71.6 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-WW757Q5 | 152.1 KiB | 69.7 KiB |
| www.googletagmanager.com/gtag/js?id=G-J0W6Q1ZBNN | 156.7 KiB | 64.1 KiB |
| us-assets.i.posthog.com/static/posthog-recorder.js?v=1.364.7 | 88.0 KiB | 56.2 KiB |
| turso.tech/_next/static/chunks/9da6db1e-f59eaee33fee26f7.js | 57.9 KiB | 30.7 KiB |
| us-assets.i.posthog.com/static/surveys.js?v=1.364.7 | 31.8 KiB | 25.4 KiB |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
| Failing Elements |
|---|
BETA div.rounded-2xl > div.p-6 > div.inline-flex > span.rounded-full |
curl -sSL tur.so/install | sh div.rounded-2xl > div.p-6 > div.inline-flex > button.hidden |
BETA div.grid > div > div.p-6 > span.rounded-full |
Read Manual div.grid > div > div.p-6 > a.rounded-full |
OPEN SOURCE div.grid > div.rounded-2xl > div.p-6 > span.rounded-full |
Fork Repository div.grid > div.rounded-2xl > div.p-6 > a.rounded-full |
These are opportunities to improve the legibility of your content.
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
| Failing Elements |
|---|
html.__variable_f367f3 html.__variable_f367f3 |
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.
| Failing Elements |
|---|
curl -sSL tur.so/install | sh div.rounded-2xl > div.p-6 > div.inline-flex > button.hidden |
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.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
| Link destination | Link Text |
|---|---|
| github.com/tursodatabase/turso-go | Go |
| docs.turso.tech/sdk/go | Go |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback