summaryrefslogtreecommitdiff
path: root/cli/bench/http/bun_hono_router.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/http/bun_hono_router.js')
-rw-r--r--cli/bench/http/bun_hono_router.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/bench/http/bun_hono_router.js b/cli/bench/http/bun_hono_router.js
deleted file mode 100644
index 395ac35a0..000000000
--- a/cli/bench/http/bun_hono_router.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-const port = Bun.argv[2] || "4545";
-const { Hono } = require("../testdata/npm/hono/dist/index.js");
-
-const app = new Hono();
-app.use("*", async (c, n) => {
- c.res.headers.set("Date", (new Date()).toUTCString());
- await n();
-});
-app.get("/", (c) => c.text("Hello, World!"));
-
-Bun.serve({
- fetch(r) {
- return app.fetch(r);
- },
- port: Number(port),
-});