import * as fastro from "https://deno.land/x/fastro@v0.74.7/http/deps.ts";
Utility functions for media types (MIME types).
This API is inspired by the GoLang mime
package
and jshttp/mime-types, and is
designed to integrate and improve the APIs from
deno.land/x/media_types.
The vendor
folder contains copy of the
jshttp/mime-db db.json
file along
with its license.
Classes
Used to construct an HTTP server. |
Variables
A map of extensions for a given media type. | |
v join | |
v SEP | |
A record of all the status codes text. | |
Functions
Make an assertion, error will be thrown if | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that actual is not null or undefined. If not then throw. | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that | |
Make an assertion that | |
Executes a function which returns a promise, expecting it to reject. | |
Make an assertion that | |
Make an assertion that actual includes expected. If not then throw. | |
Executes a function, expecting it to throw. If it does not, then it throws. | |
Decodes a given RFC4648 base64 encoded string | |
CREDIT: https://gist.github.com/enepomnyaschih/72c423f727d395eeaa09697058238727 Encodes a given Uint8Array, ArrayBuffer or string into RFC4648 base64 representation | |
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 | |
Deep equality comparison used in assertions | |
Pretty-prints an analysis of the metafile JSON to a string. This is just for convenience to be able to match esbuild's pretty-printing exactly. If you want to customize it, you can just inspect the data in the metafile yourself. | |
A synchronous version of "analyzeMetafile". | |
This function invokes the "esbuild" command-line tool for you. It returns a promise that either resolves with a "BuildResult" object or rejects with a "BuildFailure" object. | |
A synchronous version of "build". | |
This is the advanced long-running form of "build" that supports additional features such as watch mode and a local development server. | |
Converts log messages to formatted message strings suitable for printing in the terminal. This allows you to reuse the built-in behavior of esbuild's log message formatter. This is a batch-oriented API for efficiency. | |
A synchronous version of "formatMessages". | |
This configures the browser-based version of esbuild. It is necessary to call this first and wait for the returned promise to be resolved before making other API calls when using esbuild in the browser. | |
This function transforms a single JavaScript file. It can be used to minify JavaScript, convert TypeScript/JSX to JavaScript, or convert newer JavaScript to older JavaScript. It returns a promise that is either resolved with a "TransformResult" object or rejected with a "TransformFailure" object. | |
A synchronous version of "transform". | |
For a given media type, return the most relevant extension, or | |
Returns the extensions known to be associated with the media type | |
f fail | Forcefully throws a failed assertion |
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 | |
Use this to stub out methods that will throw when invoked. | |
Use this to assert unreachable code. |
Interfaces
Information about the connection a request arrived on. | |
Documentation: https://esbuild.github.io/api/#metafile | |
Documentation: https://esbuild.github.io/plugins/#on-load-arguments | |
Documentation: https://esbuild.github.io/plugins/#on-load-options | |
Documentation: https://esbuild.github.io/plugins/#on-load-results | |
Documentation: https://esbuild.github.io/plugins/#on-resolve-arguments | |
Documentation: https://esbuild.github.io/plugins/#on-resolve-options | |
Documentation: https://esbuild.github.io/plugins/#on-resolve-results | |
Documentation: https://esbuild.github.io/plugins/#resolve-options | |
Documentation: https://esbuild.github.io/plugins/#resolve-results | |
Documentation: https://esbuild.github.io/api/#serve-arguments | |
Documentation: https://esbuild.github.io/api/#serve-return-values | |
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. |