Skip to main content
Module

x/aleph/deps.ts>listenAndServe

The Full-stack Framework in Deno.
Very Popular
Go to Latest
function listenAndServe
import { listenAndServe } from "https://deno.land/x/aleph@v0.3.0-alpha.2/deps.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

Returns

Promise<void>