diff options
Diffstat (limited to 'website/index.html')
| -rw-r--r-- | website/index.html | 86 |
1 files changed, 43 insertions, 43 deletions
diff --git a/website/index.html b/website/index.html index 85bc6177c..7b3b2a05b 100644 --- a/website/index.html +++ b/website/index.html @@ -4,51 +4,51 @@ <head> <title>deno</title> <link rel="stylesheet" href="https://unpkg.com/c3@0.6.7/c3.min.css"> + <link rel="stylesheet" href="style.css"> + <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' /> </head> <body> - <h1>deno</h1> - - <p> <a href="https://github.com/denoland/deno">github.com/denoland/deno</a> - - <p> <a href="https://github.com/denoland/deno/blob/master/Docs.md">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> - - <h2>Execution time</h2> - 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. - <div id="exec-time-chart"></div> - - <h2>Throughput</h2> - <div id="throughput-chart"></div> - - <h2>Req/Sec</h2> - Tests HTTP server performance against Node. - <div id="req-per-sec-chart"></div> - - <h2>Executable size</h2> - deno ships only a single binary. We track its size here. - <div id="binary-size-chart"></div> - - <h2>Thread count</h2> - How many threads various programs use. - <div id="thread-count-chart"></div> - - <h2>Syscall count</h2> - How many total syscalls are performed when executing a given script. - <div id="syscall-count-chart"></div> - - <h2>Travis</h2> - How long for Travis CI to return a green status for pull requests. - <div id="travis-compile-time-chart"></div> + <main> + <h1>deno</h1> + + <p> <a href="https://github.com/denoland/deno">github.com/denoland/deno</a> + + <p> <a href="https://github.com/denoland/deno/blob/master/Docs.md">Docs</a> + + <h2>Execution time</h2> + 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. + <div id="exec-time-chart"></div> + + <h2>Throughput</h2> + <div id="throughput-chart"></div> + + <h2>Req/Sec</h2> + Tests HTTP server performance against Node. + <div id="req-per-sec-chart"></div> + + <h2>Executable size</h2> + deno ships only a single binary. We track its size here. + <div id="binary-size-chart"></div> + + <h2>Thread count</h2> + How many threads various programs use. + <div id="thread-count-chart"></div> + + <h2>Syscall count</h2> + How many total syscalls are performed when executing a given script. + <div id="syscall-count-chart"></div> + + <h2>Travis</h2> + How long for Travis CI to return a green status for pull requests. + <div id="travis-compile-time-chart"></div> + </main> <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> |
