summaryrefslogtreecommitdiff
path: root/cli/bench/http/bun_http.js
blob: 89ff9b1211c68d9070257cc9170d3fe55fc0494a (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2018-2022 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),
});