1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/website
Ryan Dahl 545109cf2d Add fetch_deps to syscall count.
The benchmark was added in b7fd6e but was not surfaced in the UI.

TODO: The tests should have failed and caught this situation.
2018-10-03 03:54:25 -04:00
..
app.js Add fetch_deps to syscall count. 2018-10-03 03:54:25 -04:00
app_test.js Benchmarks: github link and truncate sha1 (#845) 2018-09-27 02:19:42 -04:00
index.html Add benchmark descriptions. 2018-09-27 05:00:23 -04:00
README.md benchmark: track the binary size (#804) 2018-09-23 11:54:07 -04:00

About benchmark data

The benchmark chart supposes //website/data.json has the signature of BenchmarkData[] where BenchmarkData is defined like the below:

interface ExecTimeData {
  mean: number
  stddev: number
  user: number
  system: number
  min: number
  max: number
}

interface BenchmarkData {
  created_at: string,
  sha1: string,
  binary_size?: number,
  benchmark: {
    [key: string]: ExecTimeData
  }
}