v2.2.0
HTTPS Support
W-SRVR now enables you to start a simple HTTPS server with the new https(options, is_file)
method in the main Configurator:
const Configurator = require('w-srvr');
const server = new Configurator();
server
.https({
key: './my-key.key',
cert: './my-cert.crt'
}, true)
.start()
// ...
Check out other examples here.