Tested 2025-06-24 14:32:15 using Chrome 137.0.7151.55 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance Score | 86 |
Total Page Transfer Size | 198.8 KB |
Requests | 14 |
Timing metrics | |
TTFB [median] | 164 ms |
First Paint [median] | 364 ms |
Fully Loaded [median] | 487 ms |
Google Web Vitals | |
TTFB [median] | 164 ms |
First Contentful Paint (FCP) [median] | 364 ms |
Largest Contentful Paint (LCP) [median] | 364 ms |
Cumulative Layout Shift (CLS) [median] | 0.00 |
Visual Metrics | |
First Visual Change [median] | 367 ms |
Speed Index [median] | 367 ms |
Visual Complete 85% [median] | 367 ms |
Visual Complete 99% [median] | 367 ms |
Last Visual Change [median] | 367 ms |
Metric | min | median | mean | max |
---|---|---|---|---|
Visual Metrics | ||||
FirstVisualChange | 333 ms | 367 ms | 378 ms | 433 ms |
LastVisualChange | 333 ms | 367 ms | 378 ms | 433 ms |
SpeedIndex | 333 ms | 367 ms | 378 ms | 433 ms |
VisualReadiness | 0 ms | 0 ms | 0 ms | 0 ms |
VisualComplete85 | 333 ms | 367 ms | 378 ms | 433 ms |
VisualComplete95 | 333 ms | 367 ms | 378 ms | 433 ms |
VisualComplete99 | 333 ms | 367 ms | 378 ms | 433 ms |
Google Web Vitals | ||||
Time To First Byte (TTFB) | 148 ms | 164 ms | 171 ms | 202 ms |
Largest Contentful Paint (LCP) | 344 ms | 364 ms | 377 ms | 424 ms |
First Contentful Paint (FCP) | 344 ms | 364 ms | 377 ms | 424 ms |
Cumulative Layout Shift (CLS) | 0 | 0 | 0 | 0 |
More metrics | ||||
firstPaint | 344 ms | 364 ms | 377 ms | 424 ms |
loadEventEnd | 387 ms | 415 ms | 426 ms | 477 ms |
CPU | ||||
Total Blocking Time | 0 ms | 0 ms | 0 ms | 0 ms |
Max Potential FID | 0 ms | 0 ms | 0 ms | 0 ms |
CPU long tasks | 0 | 0 | 0 | 0 |
CPU last long task happens at | 0 ms | 0 ms | 0 ms | 0 ms |
Run 3 SpeedIndex median
Use--filmstrip.showAll
to show all filmstrips.
The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.1.
Title | Advice | Score | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Inline CSS for faster first render (inlineCss) | The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens. | 95 | ||||||||||||||||||
Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded. | ||||||||||||||||||||
Avoid Frontend single point of failures (spof) | The page has 5 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head. | 80 | ||||||||||||||||||
Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag. | ||||||||||||||||||||
Offenders: | ||||||||||||||||||||
Avoid doing redirects (assetsRedirects) | The page has 1 redirect. 1 of the redirects are from the base domain, please fix them! | 90 | ||||||||||||||||||
Description: A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile. | ||||||||||||||||||||
Offenders: | ||||||||||||||||||||
Avoid extra requests by setting cache headers (cacheHeaders) | The page has 3 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 3.1 kB the next access. | 70 | ||||||||||||||||||
Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request. | ||||||||||||||||||||
Offenders: | ||||||||||||||||||||
Long cache headers is good (cacheHeadersLong) | The page has 1 request that have a shorter cache time than 30 days (but still a cache time). | 99 | ||||||||||||||||||
Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version. | ||||||||||||||||||||
Offenders: | ||||||||||||||||||||
Always compress text content (compressAssets) | The page has 1 request that are served uncompressed. You could save a lot of bytes by sending them compressed instead. | 90 | ||||||||||||||||||
Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith. | ||||||||||||||||||||
Offenders:
| ||||||||||||||||||||
Avoid redirecting the main document (documentRedirect) | The main document gets redirected 1 time(s). Remove those redirect and make the page faster! | 0 | ||||||||||||||||||
Description: You should never ever redirect the main document, because it will make the page load slower for the user. Well, you should redirect the user if the user tries to use HTTP and there's an HTTPS version of the page. The coach checks for that. :) | ||||||||||||||||||||
Offenders: | ||||||||||||||||||||
The favicon should be small and cacheable (favicon) | The favicon has no cache time. | 50 | ||||||||||||||||||
Description: It is easy to make the favicon big but please avoid doing that, because every browser will then perform an unnecessarily large download. And make sure the cache headers are set for a long time for the favicon. It is easy to miss since it's another content type. | ||||||||||||||||||||
Offenders: | ||||||||||||||||||||
Total JavaScript size shouldn't be too big (javascriptSize) | The total JavaScript transfer size is 146 kB and the uncompressed size is 470.3 kB. This is quite large. | 50 | ||||||||||||||||||
Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks? | ||||||||||||||||||||
Offenders:
| ||||||||||||||||||||
Avoid using incorrect mime types (mimeTypes) | The page has 1 misconfigured mime type. | 99 | ||||||||||||||||||
Description: It's not a great idea to let browsers guess content types (content sniffing), in some cases it can actually be a security risk. | ||||||||||||||||||||
Offenders: | ||||||||||||||||||||
Make each CSS response small (optimalCssSize) | https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css size is 21.6 kB (21627) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB. | 90 | ||||||||||||||||||
Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier. | ||||||||||||||||||||
Offenders:
|
Title | Advice | Score |
---|---|---|
Meta description (metaDescription) | The page is missing a meta description. | 0 |
Description: Use a page description to make the page more relevant to search engines. | ||
Avoid too many third party requests (thirdParty) | The page do more requests to third party domains (10 requests and 197.4 kB) then first party (4 requests and 6.1 kB). The page transfer more bytes from third party domains (197.4 kB) then first party (6.1 kB). The regex .*allinbn.* was used to calculate first/third party requests. | 0 |
Description: Do not load most of your content from third party URLs. | ||
Avoid unnecessary headers (unnecessaryHeaders) | There are 4 responses that sets both a max-age and expires header. There are 14 responses that sets a server header. | 82 |
Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want. | ||
Offenders: |
Title | Advice | Score |
---|---|---|
Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader) | Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download. | 0 |
Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/. | ||
Offenders: | ||
Do not share user data with third parties. (thirdPartyPrivacy) | The page has 71% requests that are 3rd party (10 requests with a size of 197.4 kB). | 29 |
Description: Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests. | ||
Offenders: |
Page info | |
---|---|
Title | AllInBN |
Width | 1350 |
Height | 833 |
DOM elements | 62 |
Avg DOM depth | 4 |
Max DOM depth | 9 |
Iframes | 0 |
Script tags | 6 |
Local storage | 19 B |
Session storage | 0 b |
Network Information API | 4g |
Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies html
or --browsertime.chrome.includeResponseBodies html
to help Wappalyzer find more information about technologies used.
Technology | Confidence | Category |
---|---|---|
Fly.io | 100 | PaaS |
HSTS | 100 | Security |
Cloudflare | 100 | CDN |
HTTP/3 | 100 | Miscellaneous |
Data collected using Third Party Web 0.26.2
Cdn |
---|
JSDelivr CDN |
Unpkg |
Data from run 3
Visual Metrics | |
---|---|
First Visual Change | 367 ms |
Speed Index | 367 ms |
Visual Complete 85% | 367 ms |
Visual Complete 95% | 367 ms |
Visual Complete 99% | 367 ms |
Last Visual Change | 367 ms |
Visual Readiness | 0 ms |
Navigation Timing | |
---|---|
backEndTime | 164 ms |
domContentLoadedTime | 414 ms |
domInteractiveTime | 414 ms |
domainLookupTime | 0 ms |
frontEndTime | 250 ms |
pageDownloadTime | 1 ms |
pageLoadTime | 415 ms |
redirectionTime | 113 ms |
serverConnectionTime | 0 ms |
serverResponseTime | 46 ms |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 164 ms |
First Contentful Paint (FCP) | 364 ms |
Largest Contentful Paint (LCP) | 364 ms |
Total Blocking Time (TBT) | 0 ms |
Extra timings | |
---|---|
TTFB | 164 ms |
First Paint | 364 ms |
Load Event End | 415 ms |
Fully loaded | 487 ms |
When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.
Element type | P |
Element/tag | <p></p> |
Render time | 364 ms |
Element render delay | 201 ms |
TTFB | 164 ms |
Resource delay | 0 ms |
Resource load duration | 0 ms |
Load time | 0 ms |
Size (width*height) | 74303 |
DOM path | |
div > p:eq(5)> div > p:eq(5)> |
No layout shift detected.
Read more about the Long Animation Frames API here here.
The top 10 longest animation frames entries
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
0 ms | 103.8 ms | 12.3 ms | 0 ms | 12.3 ms |
No availible script information. |
There are no Server Timings.
There are no custom configured scripts.
There are no custom extra metrics from scripting.
How the page is built.
Summary | |
---|---|
HTTP version | HTTP/2.0 |
Total requests | 14 |
Total domains | 3 |
Total transfer size | 198.8 KB |
Total content size | 829.2 KB |
Responses missing compression | 11 |
Number of cookies | 0 |
Third party cookies | 0 |
Requests per response code | |
---|---|
200 | 13 |
302 | 1 |
URL | Type | Transfer Size | Content Size |
---|---|---|---|
https://unpkg.com/le...3/dist/leaflet.js | javascript | 41.8 KB | 143.3 KB |
https://unpkg.com/bo...trap-table.min.js | javascript | 41.4 KB | 132.7 KB |
https://cdn.jsdelivr...ist/jquery.min.js | javascript | 29.7 KB | 85.5 KB |
https://cdn.jsdelivr...rap.bundle.min.js | javascript | 22.0 KB | 76.3 KB |
https://cdn.jsdelivr...bootstrap.min.css | css | 21.1 KB | 160.0 KB |
https://cdn.jsdelivr...otstrap-icons.css | css | 13.0 KB | 93.4 KB |
https://cdn.jsdelivr...otstrap-icons.css | css | 9.5 KB | 71.6 KB |
https://cdn.jsdelivr...ist/gl-sdk.min.js | javascript | 7.8 KB | 21.5 KB |
https://unpkg.com/le.../dist/leaflet.css | css | 3.8 KB | 14.3 KB |
https://allinbn.com/about/?next=/ | html | 3.0 KB | 6.4 KB |
https://unpkg.com/bo...rap-table.min.css | css | 2.8 KB | 9.2 KB |
https://allinbn.com/static/favicon.ico | favicon | 2.6 KB | 14.7 KB |
https://allinbn.com/.../site.webmanifest | other | 442 B | 426 B |
https://allinbn.com/ | html | N/A | 0 b |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 3.0 KB | 6.4 KB | 1 |
css | 0 b | 50.2 KB | 348.5 KB | 5 |
javascript | 0 b | 142.5 KB | 459.2 KB | 5 |
other | 0 b | 442 B | 426 B | 1 |
favicon | 0 b | 2.6 KB | 14.7 KB | 1 |
Total | 0 b | 198.8 KB | 829.2 KB | 13 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
allinbn.com | 349 ms | 6.0 KB | 21.5 KB | 4 |
cdn.jsdelivr.net | 668 ms | 103.0 KB | 508.2 KB | 6 |
unpkg.com | 497 ms | 89.7 KB | 299.5 KB | 4 |
type | min | median | max |
---|---|---|---|
Expires | 0 seconds | 1 year | 1 year |
Last modified | 1 week | 7 weeks | 1 year |
Included requests done after load event end.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 0 b | 0 |
javascript | 0 b | 0 |
image | 0 b | 0 |
font | 0 b | 0 |
other | 442 B | 1 |
favicon | 2.6 KB | 1 |
Total | 3.0 KB | 2 |
Includes requests done after DOM content loaded.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 0 b | 0 |
javascript | 0 b | 0 |
image | 0 b | 0 |
font | 0 b | 0 |
other | 442 B | 1 |
favicon | 2.6 KB | 1 |
Total | 3.0 KB | 2 |
Third party requests categorised by Third party web version 0.26.2.
Category | Requests |
---|---|
cdn | 10 |
Category | Number of tools |
---|---|
cdn | 2 |
Calculated using .*allinbn.* (use --firstParty
to configure).
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 3.0 KB | 6.4 KB | 1 |
css | 0 b | 0 b | 0 b | 0 |
javascript | 0 b | 0 b | 0 b | 0 |
image | 0 b | 0 b | 0 b | 0 |
font | 0 b | 0 b | 0 b | 0 |
other | 0 b | 442 B | 426 B | 1 |
favicon | 0 b | 2.6 KB | 14.7 KB | 1 |
Total | N/A | 6.0 KB | 21.5 KB | 4 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 0 b | 0 b | 0 |
css | 0 b | 50.2 KB | 348.5 KB | 5 |
javascript | 0 b | 142.5 KB | 459.2 KB | 5 |
image | 0 b | 0 b | 0 b | 0 |
font | 0 b | 0 b | 0 b | 0 |
Total | N/A | 192.8 KB | 807.7 KB | 10 |