deno/website
2018-09-24 18:12:52 -04:00
..
app.js Add thread count benchmark (#811) 2018-09-24 18:12:52 -04:00
app_test.js Add thread count benchmark (#811) 2018-09-24 18:12:52 -04:00
index.html Add thread count benchmark (#811) 2018-09-24 18:12:52 -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
  }
}