再牛逼的梦想也抵不住傻逼似的坚持!   设为首页 - 加入收藏
您的当前位置:小鱼资料库 > 计算机 > fastify教程 > 正文

HTTP2Fastify 中文教程

来源:网络 编辑:忘情 时间:2022-06-25

HTTP2

Fastify 提供了从 Node 8.8.0 开始的对 HTTP2 实验性支持,Fastify 支持 HTTPS 和普通文本的 HTTP2 支持。需要注意的是,Node 8.8.1 以上的版本才支持 HTTP2。

当前没有任何 HTTP2 相关的 APIs 是可用的,但 Node req 和 res 可以通过 Request 和 Reply 接口访问。欢迎相关的 PR。

安全 (HTTPS)

所有的现代浏览器都只能通过安全的连接 支持 HTTP2:

'use strict'

const fs = require('fs')
const path = require('path')
const fastify = require('fastify')({
  http2: true,
  https: {
    key: fs.readFileSync(path.join(__dirname, '..', 'https', 'fastify.key')),
    cert: fs.readFileSync(path.join(__dirname, '..', 'https', 'fastify.cert'))
  }
})

fastify.get('/', function (request, reply) {
  reply.code(200).send({ hello: 'world' })
})

fastify.listen(3000)

ALPN 协商允许在同一个 socket 上支持 HTTPS 和 HTTP/2。 Node 核心 req 和 res 对象可以是 HTTP/1 或者 HTTP/2。 Fastify 自带支持开箱即用:

'use strict'

const fs = require('fs')
const path = require('path')
const fastify = require('fastify')({
  http2: true,
  https: {
    allowHTTP1: true, // 向后支持 HTTP1
    key: fs.readFileSync(path.join(__dirname, '..', 'https', 'fastify.key')),
    cert: fs.readFileSync(path.join(__dirname, '..', 'https', 'fastify.cert'))
  }
})

// 该路由从 HTTPS 与 HTTP2 均可访问
fastify.get('/', function (request, reply) {
  reply.code(200).send({ hello: 'world' })
})

fastify.listen(3000)

你可以像这样测试你的新服务器:

$ npx h2url https://localhost:3000

纯文本或者不安全

如果你搭建微服务,你可以纯文本连接 HTTP2,但是浏览器不支持这样做。

'use strict'

const fastify = require('fastify')({
  http2: true
})

fastify.get('/', function (request, reply) {
  reply.code(200).send({ hello: 'world' })
})

fastify.listen(3000)

你可以像这样测试你的新服务器:

$ npx h2url http://localhost:3000

 

标签:

相关文章:

小鱼资料库 www.xiaoyuzl.com

Copyright © 2020-2022 XIAOYUZL. All rights reserved. 冀ICP备2020029262号-2

声明:本站分享的文章、资源等均由网友上传,版权归原作者所有,只用于搜集整理。如有侵权,请您与站长联系,我们将及时处理!

Top