我正在寻找在Deno中创建https服务器的示例。我看到了Deno http服务器的示例,但没有https。
我曾尝试在Google中搜索,但未找到任何结果
最佳答案
serveTLS
与Deno 0.23.0一起登陆:
用法示例:
import { serveTLS } from "https://deno.land/std/http/server.ts";
const body = new TextEncoder().encode("Hello HTTPS");
const options = {
hostname: "localhost",
port: 443,
certFile: "./path/to/localhost.crt",
keyFile: "./path/to/localhost.key",
};
// Top-level await supported
for await (const req of serveTLS(options)) {
req.respond({ body });
}
关于deno - 创建一个Deno https服务器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55912807/