-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.ts
52 lines (49 loc) · 1.59 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// This file contains the external dependencies that doa depends upon.
// `std` dependencies
export {
serve,
serveTLS,
HTTPSOptions,
HTTPOptions,
Server,
ServerRequest,
Response,
} from "https://deno.land/[email protected]/http/server.ts";
export {
Status,
STATUS_TEXT,
} from "https://deno.land/[email protected]/http/http_status.ts";
export {
Cookies,
Cookie,
getCookies,
setCookie,
deleteCookie,
SameSite,
} from "https://deno.land/[email protected]/http/cookie.ts";
export { encoder } from "https://deno.land/[email protected]/encoding/utf8.ts";
export { EventEmitter } from "https://deno.land/[email protected]/node/events.ts";
export { assert } from "https://deno.land/[email protected]/testing/asserts.ts";
export {
stringify as qsStringify,
parse as qsParse,
} from "https://deno.land/[email protected]/node/querystring.ts";
export { HmacSha256 } from "https://deno.land/[email protected]/hash/sha256.ts";
export { HmacSha512 } from "https://deno.land/[email protected]/hash/sha512.ts";
export * as base64url from "https://deno.land/[email protected]/encoding/base64url.ts";
// 3rd party dependencies
export {
createError,
HttpError,
Props,
} from "https://deno.land/x/http_errors/mod.ts";
export { vary, append } from "https://deno.land/x/vary/mod.ts";
export { encodeUrl } from "https://deno.land/x/encodeurl/mod.ts";
export {
contentType,
lookup,
} from "https://deno.land/x/[email protected]/mod.ts";
export { parse } from "https://deno.land/x/content_type/mod.ts";
export { Accepts } from "https://deno.land/x/[email protected]/mod.ts";
export { isIP } from "https://deno.land/x/isIP/mod.ts";
export { ms } from "https://deno.land/x/ms/ms.ts";