deno/website
2019-01-26 10:24:02 -05:00
..
all_benchmark.html feat: show only 20 benchmark data in inde.html 2018-10-20 08:07:20 -04:00
app.js chore: update license lines (#1557) 2019-01-21 13:03:30 -06:00
app_test.js chore: update license lines (#1557) 2019-01-21 13:03:30 -06:00
deno_logo.png Add deno logo to website. (#1380) 2018-12-20 15:09:44 -05:00
index.html Make links and badges look better (#1588) 2019-01-26 10:24:02 -05:00
README.md refactor: stop hard coding some of benchmark names 2018-10-06 23:32:02 -04:00
rustdoc Add a simple doc generation tool. 2018-11-14 17:34:28 -08:00
style.css Make links and badges look better (#1588) 2019-01-26 10:24:02 -05:00
typedoc Add a simple doc generation tool. 2018-11-14 17:34:28 -08:00

About benchmark data

The benchmark chart supposes //website/data.json has the type 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;
  benchmark: {
    [key: string]: ExecTimeData;
  };
  binarySizeData: {
    [key: string]: number;
  };
  threadCountData: {
    [key: string]: number;
  };
  syscallCountData: {
    [key: string]: number;
  };
}