summaryrefslogtreecommitdiff
path: root/cli/bench/http/bun_http.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/http/bun_http.js')
-rw-r--r--cli/bench/http/bun_http.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/bench/http/bun_http.js b/cli/bench/http/bun_http.js
deleted file mode 100644
index 5eaa328eb..000000000
--- a/cli/bench/http/bun_http.js
+++ /dev/null
@@ -1,10 +0,0 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-const port = Bun.argv[2] || "4545";
-Bun.serve({
- fetch(_req) {
- return new Response("Hello World", {
- headers: { "Date": (new Date()).toUTCString() },
- });
- },
- port: Number(port),
-});