Skip to main content
Module

x/fastro/benchmarks/deno.ts

Fast and simple web application framework for deno
Go to Latest
File
import { serve } from "https://deno.land/std@0.132.0/http/server.ts";function handler(_req: Request): Response { return new Response("Hello, World!");}console.log("Listening on http://localhost:8000");serve(handler);