aboutsummaryrefslogtreecommitdiff
path: root/bench/fetch/deno.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/fetch/deno.js')
-rw-r--r--bench/fetch/deno.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/bench/fetch/deno.js b/bench/fetch/deno.js
new file mode 100644
index 000000000..929a478a0
--- /dev/null
+++ b/bench/fetch/deno.js
@@ -0,0 +1,17 @@
+import { bench, run } from "https://esm.run/mitata";
+
+const count = 100;
+
+bench(`fetch(https://example.com) x ${count}`, async () => {
+ const requests = new Array(count);
+
+ for (let i = 0; i < requests.length; i++) {
+ requests[i] = fetch(`https://www.example.com/?cachebust=${i}`).then((r) =>
+ r.text()
+ );
+ }
+
+ await Promise.all(requests);
+});
+
+await run();