Benchmarking tool
⚠️
deno bench
was introduced in Deno v1.20 and currently requires--unstable
flag.
Deno has a built-in benchmark runner that you can use for checking performance of JavaScript or TypeScript code.
Quickstart
Firstly, let's create a file url_bench.ts
and register a bench using the
Deno.bench()
function.
// url_bench.ts
Deno.bench("URL parsing", () => {
new URL("https://deno.land");
});
Secondly, run the benchmark using the deno bench
subcommand.
deno bench --unstable url_bench.ts
running 1 bench from file:///dev/url_bench.ts
bench URL parsing ... 1000 iterations 23,063 ns/iter (208..356,041 ns/iter) ok (1s)
bench result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out (1s)
Writing benchmarks
To define a benchmark you need to register it with a call to the Deno.bench
API. There are multiple overloads of this API to allow for the greatest
flexibility and easy switching between the forms (eg. when you need to quickly
focus a single bench for debugging, using the only: true
option):
// Compact form: name and function
Deno.bench("hello world #1", () => {
new URL("https://deno.land");
});
// Compact form: named function.
Deno.bench(function helloWorld3() {
new URL("https://deno.land");
});
// Longer form: test definition.
Deno.bench({
name: "hello world #2",
fn: () => {
new URL("https://deno.land");
},
});
// Similar to compact form, with additional configuration as a second argument.
Deno.bench("hello world #4", { permissions: { read: true } }, () => {
new URL("https://deno.land");
});
// Similar to longer form, with test function as a second argument.
Deno.bench(
{ name: "hello world #5", permissions: { read: true } },
() => {
new URL("https://deno.land");
},
);
// Similar to longer form, with a named test function as a second argument.
Deno.bench({ permissions: { read: true } }, function helloWorld6() {
new URL("https://deno.land");
});
Async functions
You can also bench asynchronous code by passing a bench function that returns a
promise. For this you can use the async
keyword when defining a function:
Deno.bench("async hello world", async () => {
await 1;
});
Iterations and warmup runs
By default, each bench does 1000 warmup runs and 1000 measures runs. The warmup runs are useful to allow the JavaScript engine to optimize the code using JIT compiler.
You can customize number of iterations and warmup runs using
Deno.BenchDefinition.n
and Deno.BenchDefinition.warmup
respectively:
// Do 100k warmup runs and 1 million measured runs
Deno.bench({ warmup: 1e5, n: 1e6 }, function resolveUrl() {
new URL("./foo.js", import.meta.url);
});
Running benchmarks
To run a benchmark, call deno bench
with the file that contains your bench
function. You can also omit the file name, in which case all benchmarks in the
current directory (recursively) that match the glob
{*_,*.,}bench.{ts, tsx, mts, js, mjs, jsx, cjs, cts}
will be run. If you pass
a directory, all files in the directory that match this glob will be run.
The glob expands to:
- files named
bench.{ts, tsx, mts, js, mjs, jsx, cjs, cts}
, - or files ending with
.bench.{ts, tsx, mts, js, mjs, jsx, cjs, cts}
, - or files ending with
_bench.{ts, tsx, mts, js, mjs, jsx, cjs, cts}
# Run all benches in the current directory and all sub-directories
deno bench
# Run all benches in the util directory
deno bench util/
# Run just my_bench.ts
deno bench my_bench.ts
⚠️ If you want to pass additional CLI arguments to the bench files use
--
to inform Deno that remaining arguments are scripts arguments.
# Pass additional arguments to the bench file
deno bench my_test.ts -- -e --foo --bar
deno bench
uses the same permission model as deno run
and therefore will
require, for example, --allow-write
to write to the file system during
benching.
To see all runtime options with deno bench
, you can reference the command line
help:
deno help bench
Filtering
There are a number of options to filter the benches you are running.
Command line filtering
Benches can be run individually or in groups using the command line --filter
option.
The filter flags accept a string or a pattern as value.
Assuming the following benches:
Deno.bench({ name: "my-bench", fn: myBench });
Deno.bench({ name: "bench-1", fn: bench1 });
Deno.bench({ name: "bench2", fn: bench2 });
This command will run all of these benches because they all contain the word "bench".
deno bench --filter "bench" benchmarks/
On the flip side, the following command uses a pattern and will run the second and third benchmarks.
deno bench --filter "/bench-*\d/" benchmarks/
To let Deno know that you want to use a pattern, wrap your filter with forward-slashes like the JavaScript syntactic sugar for a regex.
Bench definition filtering
Within the benches themselves, you have two options for filtering.
Filtering out (ignoring these benches)
Sometimes you want to ignore benches based on some sort of condition (for
example you only want a benchmark to run on Windows). For this you can use the
ignore
boolean in the bench definition. If it is set to true the test will be
skipped.
Deno.bench({
name: "bench windows feature",
ignore: Deno.build.os === "windows",
fn() {
doWindowsFeature();
},
});
Filtering in (only run these benches)
Sometimes you may be in the middle of a performance problem within a large bench
class and you would like to focus on just that single bench and ignore the rest
for now. For this you can use the only
option to tell the benchmark harness to
only run benches with this set to true. Multiple benches can set this option.
While the benchmark run will report on the success or failure of each bench, the
overall benchmark run will always fail if any bench is flagged with only
, as
this is a temporary measure only which disables nearly all of your benchmarks.
Deno.bench({
name: "Focus on this bench only",
only: true,
fn() {
benchComplicatedStuff();
},
});