-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tsx
51 lines (47 loc) · 2.08 KB
/
main.tsx
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
// 导入所需模块
import { serve } from "https://deno.land/[email protected]/http/server.ts";
import { parse } from "https://deno.land/[email protected]/flags/mod.ts";
import { handler } from "./handler.tsx";
import process from "node:process";
// 如果当前脚本是作为主脚本运行
if (import.meta.main) {
/* error: Uncaught (in promise) TimedOut: timed out
rr = await this.#rd.read(this.#buf);
^
at async TlsConn.read (ext:deno_net/01_net.js:135:15)
at async BufReader.read (https://deno.land/[email protected]/io/buffer.ts:383:12)
at async BufReader.readFull (https://deno.land/[email protected]/io/buffer.ts:415:20)
at async WireProtocol.receive (https://deno.land/x/[email protected]/src/protocol/protocol.ts:110:28) */
process.on("uncaughtException", (error, origin) => {
console.error(error, origin);
// 这里可以添加额外的处理逻辑,比如记录日志或者尝试重启服务
});
console.log({
mongodb_url: Deno.env.get("mongodb_url"),
mongodb_db: Deno.env.get("mongodb_db"),
mongodb_collection: Deno.env.get("mongodb_collection"),
DOH_PATHNAME: Deno.env.get("DOH_PATHNAME"),
ttl: Deno.env.get("ttl"),
doh: Deno.env.get("doh"),
token: Deno.env.get("token"),
});
console.log(Deno.env.toObject());
// 解析命令行参数,并获取端口号和主机名
let { port, hostname } = parse(Deno.args);
console.log({ port, hostname });
// 如果端口号或主机名存在
if (port || hostname) {
// 如果端口号不存在,则设置默认端口号为8000
port ??= 8000;
// 如果主机名不存在,则设置默认主机名为0.0.0.0
hostname ??= "0.0.0.0";
// 启动服务器,监听指定的端口号和主机名
await serve(handler, { port, hostname });
} else {
// 否则,使用默认的端口号8000和主机名0.0.0.0监听
// await Promise.all([
// serve(handler, { hostname: "::", port: 8000 }),
serve(handler, { hostname: "0.0.0.0", port: 8000 }); //,
// ]);
}
}