Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/doa/test/test_deps.ts>serve

A middleware framework for Deno's http serve🦕. Transplanted from Koa with ❤️
Latest
function serve
import { serve } from "https://deno.land/x/doa@v1.0.0/test/test_deps.ts";

Create a HTTP server

import { serve } from "https://deno.land/std/http/server.ts";
const body = "Hello World\n";
const server = serve({ port: 8000 });
for await (const req of server) {
  req.respond({ body });
}

Parameters

addr: string | HTTPOptions