Created
June 25, 2020 04:37
-
-
Save Richienb/4ebfa6a9a998fc32946c460401a6cbda to your computer and use it in GitHub Desktop.
Express with SSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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