Module

x/oak/deps.ts

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
File
// Copyright 2018-2023 the oak authors. All rights reserved. MIT license.
// This file contains the external dependencies that oak depends upon
// `std` dependencies
export { concat } from "https://deno.land/std@0.212.0/bytes/concat.ts";export { copy as copyBytes } from "https://deno.land/std@0.212.0/bytes/copy.ts";export { timingSafeEqual } from "https://deno.land/std@0.212.0/crypto/timing_safe_equal.ts";export { KeyStack } from "https://deno.land/std@0.212.0/crypto/unstable_keystack.ts";export { encodeBase64 } from "https://deno.land/std@0.212.0/encoding/base64.ts";export { calculate, type ETagOptions, type FileInfo, ifMatch, ifNoneMatch,} from "https://deno.land/std@0.212.0/http/etag.ts";export { accepts, acceptsEncodings, acceptsLanguages,} from "https://deno.land/std@0.212.0/http/negotiation.ts";export { UserAgent } from "https://deno.land/std@0.212.0/http/user_agent.ts";export { LimitedReader } from "https://deno.land/std@0.212.0/io/mod.ts";export { contentType } from "https://deno.land/std@0.212.0/media_types/content_type.ts";export { typeByExtension } from "https://deno.land/std@0.212.0/media_types/type_by_extension.ts";export { readAll } from "https://deno.land/std@0.212.0/streams/mod.ts";export { basename, extname, isAbsolute, join, normalize, parse, SEP,} from "https://deno.land/std@0.212.0/path/mod.ts";
// 3rd party dependencies
export { mergeHeaders, SecureCookieMap, type SecureCookieMapGetOptions, type SecureCookieMapSetDeleteOptions,} from "https://deno.land/x/oak_commons@0.5.2/cookie_map.ts";export { createHttpError, errors, HttpError, type HttpErrorOptions, isHttpError,} from "https://deno.land/x/oak_commons@0.5.2/http_errors.ts";export { type HttpMethod as HTTPMethods } from "https://deno.land/x/oak_commons@0.5.2/method.ts";export { ServerSentEvent, type ServerSentEventInit, ServerSentEventStreamTarget, type ServerSentEventTarget, type ServerSentEventTargetOptions,} from "https://deno.land/x/oak_commons@0.5.2/server_sent_event.ts";export { type ErrorStatus, isErrorStatus, isRedirectStatus, type RedirectStatus, Status, STATUS_TEXT,} from "https://deno.land/x/oak_commons@0.5.2/status.ts";
export { compile, type Key, match as pathMatch, parse as pathParse, type ParseOptions, pathToRegexp, type TokensToRegexpOptions,} from "https://deno.land/x/path_to_regexp@v6.2.1/index.ts";