Skip to main content
Module

x/fastro/http/deps.ts

Fast and simple web application framework for deno
Go to Latest
import * as fastro from "https://deno.land/x/fastro@v0.76.1/http/deps.ts";

Utilities for working with OS-specific file paths.

Codes in the examples uses POSIX path but it automatically use Windows path on Windows. Use methods under posix or win32 object instead to handle non platform specific path like:

import { posix, win32 } from "https://deno.land/std@0.224.0/path/mod.ts";
const p1 = posix.fromFileUrl("file:///home/foo");
const p2 = win32.fromFileUrl("file:///home/foo");
console.log(p1); // "/home/foo"
console.log(p2); // "\\home\\foo"

This module is browser compatible.

Classes

Used to construct an HTTP server.

Enums

Standard HTTP status codes.

Functions

Make an assertion that actual and expected are equal, deeply. If not deeply equal, then throw.

Make an assertion that actual is not null or undefined. If not then throw.

Determines the common path from a set of paths, using an optional separator, which defaults to the OS default separator.

Given an extension or media type, return a full Content-Type or Content-Disposition header value.

For a given media type, return the most relevant extension, or undefined if no extension can be found.

Returns the extensions known to be associated with the media type type. The returned extensions will each begin with a leading dot, as in .html.

Serializes the media type and the optional parameters as a media type conforming to RFC 2045 and RFC 2616.

Given a media type or header value, identify the encoding charset. If the charset cannot be determined, the function returns undefined.

Convert a glob string to a regular expression.

Test whether the given string is a glob

Like join(), but doesn't collapse "**/.." when globstar is true.

Like normalize(), but doesn't collapse "**/.." when globstar is true.

Parses the media type and any optional parameters, per RFC 1521. Media types are the values in Content-Type and Content-Disposition headers. On success the function returns a tuple where the first element is the media type and the second element is the optional parameters or undefined if there are none.

Serves HTTP requests with the given handler.

Converts a hash to a string with a given encoding.

Returns the media type associated with the file extension. Values are normalized to lower case and matched irrespective of a leading ..

Interfaces

Information about the connection a request arrived on.

A parsed path object generated by path.parse() or consumed by path.format().

Type Aliases

A handler for HTTP requests. Consumes a request and connection information and returns a response.