gpt4 book ai didi

deno - 创建一个Deno https服务器

转载 作者:行者123 更新时间:2023-12-05 01:37:51 24 4
gpt4 key购买 nike

我正在寻找在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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com