Server SDKs
Build AI agents, control calls, send messages, and more
Create the options object needed by Node.js https.createServer().
https.createServer()
None.
{ cert: string; key: string } | null — An object with cert and key strings read from disk, or null if either file is missing.
{ cert: string; key: string } | null
cert
key
null
1import { SslConfig } from '@signalwire/sdk';23const ssl = new SslConfig();4const opts = ssl.getServerOptions();5if (opts) {6 const server = createServer(opts);7}