Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/levo/src/deps.ts>server.listenAndServe

Server side rendering with The Elm Architecture in Deno
Latest
function server.listenAndServe
import { server } from "https://deno.land/x/levo@v0.0.27/src/deps.ts";
const { listenAndServe } = server;

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>