Skip to main content
Module

x/fastro/benchmarks/deno_http.ts

Fast and simple web application framework for deno
Go to Latest
File
import { serve } from "https://deno.land/std/http/server.ts";const port = 3005;const s = serve({ port });console.log("deno_http listen on", port);for await (const req of s) { req.respond({ body: "Hello World\n" });}