import * as fastro from "https://deno.land/x/fastro@v0.79.3/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.
Functions
Return the last portion of a | |
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 | |
Return the directory path of a | |
For a given media type, return the most relevant extension, or | |
Returns the extensions known to be associated with the media type | |
Return the extension of the | |
Generate a path from | |
Serializes the media type and the optional parameters as a media type conforming to RFC 2045 and RFC 2616. | |
Converts a file URL to a path string. | |
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. | |
f h | |
Verifies whether provided path is absolute | |
Test whether the given string is a glob | |
f join | Join all given a sequence of |
Like join(), but doesn't collapse "**/.." when | |
Normalize the | |
Like normalize(), but doesn't collapse "**/.." when | |
Return a | |
Parses the media type and any optional parameters, per
RFC 1521. Media types are
the values in | |
Return the relative path from | |
Resolves path segments into a | |
Converts a path string to a file URL. | |
Converts a hash to a string with a given encoding. | |
Resolves path to a namespace path | |
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. |