Skip to content

Proxy Helper

Proxy Helper 提供了在使用 Hono 应用程序作为(反向)代理时非常有用的功能。

导入

ts
import { Hono } from 'hono'
import { proxy } from 'hono/proxy'

proxy()

proxy() 是用于代理的 fetch() API 包装器。参数和返回值与 fetch() 相同(除了代理特定的选项)。

Accept-Encoding 标头被替换为当前运行时可以处理的编码。不必要的响应标头会被删除,并返回一个 Response 对象,您可以将其作为处理程序的响应返回。

示例

简单用法:

ts
app.get('/proxy/:path', (c) => {
  return proxy(`http://${originServer}/${c.req.param('path')}`)
})

复杂用法:

ts
app.get('/proxy/:path', async (c) => {
  const res = await proxy(
    `http://${originServer}/${c.req.param('path')}`,
    {
      headers: {
        ...c.req.header(), // optional, specify only when forwarding all the request data (including credentials) is necessary. // 可选,仅在需要转发所有请求数据(包括凭据)时指定。
        'X-Forwarded-For': '127.0.0.1',
        'X-Forwarded-Host': c.req.header('host'),
        Authorization: undefined, // do not propagate request headers contained in c.req.header('Authorization') // 不要传播包含在 c.req.header('Authorization') 中的请求头
      },
    }
  )
  res.headers.delete('Set-Cookie')
  return res
})

或者你可以将 c.req 作为参数传递。

ts
app.all('/proxy/:path', (c) => {
  return proxy(`http://${originServer}/${c.req.param('path')}`, {
    ...c.req, // optional, specify only when forwarding all the request data (including credentials) is necessary. // 可选,仅在需要转发所有请求数据(包括凭据)时指定。
    headers: {
      ...c.req.header(),
      'X-Forwarded-For': '127.0.0.1',
      'X-Forwarded-Host': c.req.header('host'),
      Authorization: undefined, // do not propagate request headers contained in c.req.header('Authorization') // 不要传播包含在 c.req.header('Authorization') 中的请求头
    },
  })
})

ProxyFetch

proxy() 的类型被定义为 ProxyFetch,定义如下

ts
interface ProxyRequestInit extends Omit<RequestInit, 'headers'> {
  raw?: Request
  headers?:
    | HeadersInit
    | [string, string][]
    | Record<RequestHeader, string | undefined>
    | Record<string, string | undefined>
}

interface ProxyFetch {
  (
    input: string | URL | Request,
    init?: ProxyRequestInit
  ): Promise<Response>
}

在 MIT 许可证下发布。