1.0.2 • Published 6 years ago
@plant/https2 v1.0.2
Node HTTP2 TLS/SSL server for Plant
Plant adapter for node.js http2 module. It creates server listener from plant
instance and http2.createSecureServer() options.
Install
npm i @plant/https2Usage
Hello World Example
// Build request handler
const Plant = require('@plant/plant');
const {createServer} = require('@plant/https2');
const plant = new Plant();
plant.use(({res, socket}) => {
  res.body = 'Hello, World!'
})
createServer(plant, {
  // get SSL key and cert somehow
  key,
  cert,
}).listen(443)Enable HTTP1
HTTP package doesn't support HTTP1 support by default and you should enable it manually:
createServer(plant, {
  allowHTTP1: true,
})HTTP2 Push Example
plant.use(({res, socket}) => {
  // Send HTTP2 push
  if (socket.canPush) {
    res.push(new Response({
      url: new URL('/style.css', res.url),
      headers: {
        'content-type': 'text/css',
      },
      body: 'html {color: green}',
    }))
  }
  res.body = '<html><head><link href="/style.css" ...'
})Copyright
MIT © Rumkin