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

x/cav/deps.ts>fileServer.ServeDirOptions

A server framework for Deno
Go to Latest
interface fileServer.ServeDirOptions
import { type fileServer } from "https://deno.land/x/cav@0.2.3/deps.ts";
const { ServeDirOptions } = fileServer;

Interface for serveDir options.

Properties

optional
fsRoot: string

Serves the files under the given directory root. Defaults to your current directory.

optional
urlRoot: string

Specified that part is stripped from the beginning of the requested pathname.

optional
showDirListing: boolean

Enable directory listing. Defaults to false.

optional
showDotfiles: boolean

Serves dotfiles. Defaults to false.

optional
enableCors: boolean

Enable CORS via the "Access-Control-Allow-Origin" header. Defaults to false.

optional
quiet: boolean

Do not print request level logs. Defaults to false. Defaults to false.

optional
etagAlgorithm: EtagAlgorithm

The algorithm to use for generating the ETag. Defaults to "fnv1a".