Complementación del Estándar http2 para Express npm

var express = require('express'); 
var app = express(); 

 app.get('/', function (req, res) { res.send('hello, http2!'); }); 

 //llamando certificados 

var options = { key: fs.readFileSync('./example/localhost.key'), cert: fs.readFileSync('./example/localhost.crt') }; 

 //estableciendo puerto con https require('http2').createServer(options, app).listen(8080);

Comentarios