2018-09-21 12:06:59 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2018-09-26 20:41:23 -04:00
|
|
|
<title>deno</title>
|
2018-09-21 12:06:59 -04:00
|
|
|
<link rel="stylesheet" href="https://unpkg.com/c3@0.6.7/c3.min.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-09-26 20:41:23 -04:00
|
|
|
<h1>deno</h1>
|
|
|
|
|
|
|
|
<p> <a href="https://github.com/denoland/deno">github.com/denoland/deno</a>
|
|
|
|
|
|
|
|
<p> <a href="https://github.com/denoland/deno/issues/573">User Documentation</a>
|
|
|
|
|
|
|
|
<p> <a href="https://github.com/denoland/deno/blob/master/Roadmap.md">Roadmap</a>
|
|
|
|
|
|
|
|
<p> <a href="https://github.com/denoland/deno_install">Install!</a>
|
|
|
|
|
2018-09-25 04:28:56 -04:00
|
|
|
<h2>Execution time</h2>
|
2018-09-26 20:41:23 -04:00
|
|
|
This shows how much time total it takes to run a few simple deno programs:
|
|
|
|
<a href="https://github.com/denoland/deno/blob/master/tests/002_hello.ts">tests/002_hello.ts</a>
|
|
|
|
and
|
|
|
|
<a href="https://github.com/denoland/deno/blob/master/tests/003_relative_import.ts">tests/003_relative_import.ts</a>.
|
|
|
|
For deno to execute typescript, it must first compile it to JS.
|
|
|
|
A warm startup is when deno has a cached JS output already, so
|
|
|
|
it should be fast because it bypasses the TS compiler.
|
|
|
|
A cold startup is when deno must compile from scratch.
|
2018-09-23 11:54:07 -04:00
|
|
|
<div id="exec-time-chart"></div>
|
2018-09-26 20:41:23 -04:00
|
|
|
|
2018-10-11 16:55:22 -04:00
|
|
|
<h2>Throughput</h2>
|
|
|
|
<div id="throughput-chart"></div>
|
|
|
|
|
2018-10-15 16:44:35 -04:00
|
|
|
<h2>Req/Sec</h2>
|
|
|
|
Tests HTTP server performance against Node.
|
|
|
|
<div id="req-per-sec-chart"></div>
|
|
|
|
|
2018-09-26 20:41:23 -04:00
|
|
|
<h2>Executable size</h2>
|
|
|
|
deno ships only a single binary. We track its size here.
|
2018-09-23 11:54:07 -04:00
|
|
|
<div id="binary-size-chart"></div>
|
2018-09-26 20:41:23 -04:00
|
|
|
|
2018-09-25 04:28:56 -04:00
|
|
|
<h2>Thread count</h2>
|
2018-09-26 20:41:23 -04:00
|
|
|
How many threads various programs use.
|
2018-09-24 18:12:52 -04:00
|
|
|
<div id="thread-count-chart"></div>
|
2018-09-26 20:41:23 -04:00
|
|
|
|
2018-09-25 04:28:56 -04:00
|
|
|
<h2>Syscall count</h2>
|
2018-09-26 20:41:23 -04:00
|
|
|
How many total syscalls are performed when executing a given script.
|
2018-09-24 23:58:18 -04:00
|
|
|
<div id="syscall-count-chart"></div>
|
2018-09-26 20:41:23 -04:00
|
|
|
|
|
|
|
<h2>Travis</h2>
|
|
|
|
How long for Travis CI to return a green status for pull requests.
|
2018-09-26 20:26:34 -04:00
|
|
|
<div id="travis-compile-time-chart"></div>
|
2018-09-21 12:06:59 -04:00
|
|
|
<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>
|
2018-09-26 20:41:23 -04:00
|
|
|
|
2018-09-24 11:31:14 -04:00
|
|
|
<script type="module">
|
|
|
|
import { main } from "./app.js";
|
|
|
|
main();
|
|
|
|
</script>
|
2018-09-21 12:06:59 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|