import * as fastro from "https://deno.land/x/fastro@v0.75.8/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.
Variables
A map of extensions for a given media type. | |
v h | |
v join | |
v SEP | |
A record of all the status codes text. | |
Functions
Make an assertion that | |
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 | |
For a given media type, return the most relevant extension, or | |
Returns the extensions known to be associated with the media type | |
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 | |
Convert a glob string to a regular expression. | |
Test whether the given string is a glob | |
Like join(), but doesn't collapse "**/.." when | |
Like normalize(), but doesn't collapse "**/.." when | |
Parses the media type and any optional parameters, per
RFC 1521. Media types are
the values in | |
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. |