-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
deps.ts
56 lines (54 loc) · 1.91 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
53
54
55
56
export {
serve,
Server,
serveTls,
} from "https://deno.land/std@0.183.0/http/server.ts";
export type { ConnInfo } from "https://deno.land/std@0.183.0/http/server.ts";
export {
Status,
STATUS_TEXT,
} from "https://deno.land/std@0.183.0/http/http_status.ts";
export {
deleteCookie,
setCookie,
} from "https://deno.land/std@0.183.0/http/cookie.ts";
export type { Cookie } from "https://deno.land/std@0.183.0/http/cookie.ts";
export {
basename,
dirname,
extname,
fromFileUrl,
isAbsolute,
join,
normalize,
resolve,
sep,
} from "https://deno.land/std@0.183.0/path/mod.ts";
export { setImmediate } from "https://deno.land/std@0.177.0/node/timers.ts";
export { parse } from "https://deno.land/std@0.177.0/node/querystring.ts";
export { default as EventEmitter } from "https://deno.land/std@0.177.0/node/events.ts";
export { Sha1 } from "https://deno.land/std@0.160.0/hash/sha1.ts";
export {
readableStreamFromReader,
readAll,
readerFromStreamReader,
} from "https://deno.land/std@0.172.0/streams/conversion.ts";
export {
charset,
contentType,
lookup,
} from "https://deno.land/x/media_types@v3.0.3/mod.ts";
export { Accepts } from "https://deno.land/x/accepts@2.1.1/mod.ts";
export {
hasBody,
typeofrequest,
} from "https://deno.land/x/type_is@1.0.3/mod.ts";
export { isIP } from "https://deno.land/x/isIP@1.0.0/mod.ts";
export { vary } from "https://deno.land/x/vary@1.0.0/mod.ts";
export { escapeHtml } from "https://deno.land/x/escape_html@1.0.0/mod.ts";
export { encodeUrl } from "https://deno.land/x/encodeurl@1.0.0/mod.ts";
export { gunzip, inflate } from "https://deno.land/x/compress@v0.4.1/mod.ts";
export { default as parseRange } from "https://cdn.skypack.dev/range-parser@1.2.1?dts";
export { default as qs } from "https://cdn.skypack.dev/qs@6.10.3?dts";
export { default as ipaddr } from "https://cdn.skypack.dev/ipaddr.js@2.0.1?dts";
export { default as ms } from "https://cdn.skypack.dev/ms@2.1.3?dts";