From 5beec3f106b0890cc76150d0e3b3661c576d4c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 19 Aug 2022 14:36:01 +0200 Subject: feat(unstable): change Deno.serve() API (#15498) - Merge "Deno.serve()" and "Deno.serveTls()" API - Remove first argument and use "fetch" field options instead - Update type declarations - Add more documentation --- cli/bench/http/deno_flash_send_file.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/bench/http/deno_flash_send_file.js') diff --git a/cli/bench/http/deno_flash_send_file.js b/cli/bench/http/deno_flash_send_file.js index db2ad7a82..81e8c4991 100644 --- a/cli/bench/http/deno_flash_send_file.js +++ b/cli/bench/http/deno_flash_send_file.js @@ -6,9 +6,9 @@ const { serve } = Deno; const path = new URL("../testdata/128k.bin", import.meta.url).pathname; -function handler() { +function fetch() { const file = Deno.openSync(path); return new Response(file.readable); } -serve(handler, { hostname, port: Number(port) }); +serve({ fetch, hostname, port: Number(port) }); -- cgit v1.2.3