Skip to main content
Module

std/http/mod.ts>listenAndServe

Deno standard library
Go to Latest
function listenAndServe
import { listenAndServe } from "https://deno.land/std@0.41.0/http/mod.ts";

Start an HTTP server with given options and request handler

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

Parameters

addr: string | HTTPOptions

Server configuration

handler: (req: ServerRequest) => void

Request handler

Returns

Promise<void>