Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 506 Bytes

readme.md

File metadata and controls

33 lines (23 loc) · 506 Bytes

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/https

Usage

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