@plant/https
v1.0.1
Published
Plant node.js HTTP module's server handler
Readme
Node HTTPS for Plant
Plant adapter for node.js https module. It creates server listener from plant instance and https options.
Install
npm i @plant/httpsUsage
const Plant = require('@plant/plant');
const {createServer} = require('@plant/https');
const plant = new Plant();
plant.use(({res}) => {
res.body = 'Ok';
});
createServer(plant, {
// get SSL key and cert somehow
key,
cert,
})
.listen(443);Copyright
MIT © Rumkin
