summaryrefslogtreecommitdiff
path: root/website/index.html
blob: 52cfdc442a30e3cc58ad4881258088942f659558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
  <title>deno benchmark</title>
  <link rel="stylesheet" href="https://unpkg.com/c3@0.6.7/c3.min.css">
</head>
<body>
  <h2>Execution time</h2>
  <div id="exec-time-chart"></div>
  <h2>Binary size</h2>
  <div id="binary-size-chart"></div>
  <h2>Thread count</h2>
  <div id="thread-count-chart"></div>
  <h2>Syscall count</h2>
  <div id="syscall-count-chart"></div>
  <script src="https://unpkg.com/d3@5.7.0/dist/d3.min.js"></script>
  <script src="https://unpkg.com/c3@0.6.7/c3.min.js"></script>
  <script type="module">
  import { main } from "./app.js";
  main();
  </script>
</body>
</html>