Benchmarking parts of the application
When it comes to writing benchmarks in JavaScript, the language itself provides a few functions, all of which are included in the High Resolution Time API.
As Deno is fully ES6 compatible, these same features are available. If you've had the time to look at Deno's standard library or the official website, you'll have seen that benchmarks are taken into a lot of consideration and are tracked across Deno versions (https://deno.land/benchmarks). Upon checking Deno's source code, you will see that you have a very nice set of examples regarding how to write them.
For our application, we could easily use the APIs available on the browser, but Deno itself provides functionality in the standard library to help with writing and running benchmarks, so that's what we'll use here.
To start, we need to know Deno's standard library benchmark utilities so that we know what we can do (https://github.com/denoland/deno...