mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
20 lines
511 B
HTML
20 lines
511 B
HTML
<!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 chart</h2>
|
|
<div id="exec-time-chart"></div>
|
|
<h2>Binary size chart</h2>
|
|
<div id="binary-size-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>
|
|
|