-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (71 loc) · 2.18 KB
/
index.html
File metadata and controls
75 lines (71 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!-- @copyright
* Copyright © 2026 Apeleg Limited. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<!doctype html>
<html lang="en" dir="ltr" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<title>
Benchmark Studio — Interactive JavaScript Performance Benchmarking
Tool
</title>
<meta
name="description"
content="Compare JavaScript function performance with statistically rigorous benchmarks. Features paired t-tests, confidence intervals, baseline correction, and exportable results."
/>
<script
async="async"
crossorigin="anonymous"
integrity=""
src="/src/main.ts"
type="module"
></script>
</head>
<body>
<div id="app">
<header class="no-js">
<h1 property="schema:name">Benchmark Studio</h1>
<p>
Interactive JavaScript performance benchmarking in your
browser
</p>
</header>
<noscript class="no-js">
<section aria-label="JavaScript required">
<h2>JavaScript Required</h2>
<p>
Benchmark Studio is an interactive client-side
application. Please enable JavaScript to use the
benchmarking tool.
</p>
</section>
</noscript>
<footer class="no-js">
<p>
© 2026 
<span property="schema:author" typeof="schema:Organization">
<a property="schema:url" href="https://apeleg.com/"
><span property="schema:name"
>Apeleg Limited</span
></a
> </span
>.
</p>
</footer>
</div>
</body>
</html>