Skip to main content
Module

x/oak/deps.ts

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
File
// Copyright 2018-2019 the oak authors. All rights reserved. MIT license.
// This file contains the external dependencies that oak depends upon
export { HTTPOptions, HTTPSOptions, Response, serve, Server, ServerRequest, serveTLS} from "https://deno.land/std@v0.38.0/http/server.ts";export { Status, STATUS_TEXT} from "https://deno.land/std@v0.38.0/http/http_status.ts";export { basename, extname, join, isAbsolute, normalize, parse, resolve, sep} from "https://deno.land/std@v0.38.0/path/mod.ts";export { contentType, lookup} from "https://deno.land/x/media_types@v1.0.0/mod.ts";