Skip to content

Instantly share code, notes, and snippets.

@Richienb
Created June 25, 2020 04:37
Show Gist options
  • Save Richienb/4ebfa6a9a998fc32946c460401a6cbda to your computer and use it in GitHub Desktop.
Save Richienb/4ebfa6a9a998fc32946c460401a6cbda to your computer and use it in GitHub Desktop.
Express with SSL
const express = require("express");
const devcert = require("devcert");
const app = express();
(async () => {
const ssl = await devcert.certificateFor("localhost");
https.createServer(ssl, app).listen(3000);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment