本文主要是介绍用nodejs创建一个http2服务器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用谷歌的spdy协议。首先安装spdy协议,npm install spdy
const http2 = require('./node_modules/spdy/lib/spdy');
var fs = require('fs');
var options = {key: fs.readFileSync('./files/server-key.pem'),ca: [fs.readFileSync('./files/ca-cert.pem')],cert: fs.readFileSync('./files/server-cert.pem')
};
http2.createServer(options, function(req,res){res.writeHead(200);res.end('hello world\n');
}).listen(8080)
访问https://localhost:8080即可,spdy强制使用https。
这篇关于用nodejs创建一个http2服务器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!