Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/abc/vendor/https/deno.land/std/http/server.ts>listenAndServe

A better Deno framework to create web application.
Latest
function listenAndServe
import { listenAndServe } from "https://deno.land/x/abc@v1.3.3/vendor/https/deno.land/std/http/server.ts";

Start an HTTP server with given options and request handler

const body = "Hello World\n";
const options = { port: 8000 };
listenAndServe(options, (req) => {
  req.respond({ body });
});

Parameters

addr: string | HTTPOptions

Server configuration

handler: (req: ServerRequest) => void

Request handler