Skip to main content
Module

x/slack_bolt/deps.ts>serveTLS

TypeScript framework to build Slack apps in a flash with the latest platform features. Deno port of @slack/bolt
Latest
function serveTLS
import { serveTLS } from "https://deno.land/x/slack_bolt@1.0.0/deps.ts";

Create an HTTPS server with given options

const body = "Hello HTTPS";
const options = {
  hostname: "localhost",
  port: 443,
  certFile: "./path/to/localhost.crt",
  keyFile: "./path/to/localhost.key",
};
for await (const req of serveTLS(options)) {
  req.respond({ body });
}

Parameters

options: HTTPSOptions

Server configuration

Returns

Async iterable server instance for incoming requests