我在Node JS 10.9中将HAPI JS与HTTP / 2一起使用。当我使用此示例启动服务器时,
const fs = require('fs')
const Hapi = require('hapi')
const http2 = require('http2')
const server = new Hapi.Server()
server.connection({
listener: http2.createServer(),
host: 'localhost',
port: 3000
})
server.route({
method: 'GET',
path:'/hello',
handler: function (request, reply) {
return reply('Hello, World!')
}
})
server.start((err) => {
if (err) console.error(err)
console.log(`Started ${server.connections.length} connections`)
})
我在控制台上收到此警告
(node:16600) ExperimentalWarning: The http2 module is an experimental API.
我在互联网上找不到有关是否可以在生产模式下使用它的相关解释?可以在生产模式下使用HTTP / 2并发出这样的警告吗?
答案 0 :(得分:3)
@ DoMiNeLa10指出实验警告已在10.10中删除:
https://github.com/nodejs/node/pull/22716:
http2 :
◦http2模块不再处于实验状态。 #22466
这里很好地讨论了使其成为非实验性的所有工作:https://github.com/nodejs/node/issues/19453