0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-30 09:08:00 -04:00
denoland-deno/website
Bert Belder b9cdf088e7
format
2018-10-04 02:03:29 -07:00
..
app.js Hide line with value zero (#882) 2018-10-03 05:21:26 -04:00
app_test.js fix: re-enable fixed tests 2018-10-03 21:58:33 -04:00
index.html Add benchmark descriptions. 2018-09-27 05:00:23 -04:00
README.md format 2018-10-04 02:03:29 -07: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;
  };
}