跳至内容

适配器助手

适配器助手提供了一种无缝的方式,通过统一的接口与各种平台进行交互。

导入

ts
import { Hono } from 'hono'
import { env, getRuntimeKey } from 'hono/adapter'

env()

env() 函数方便了在不同运行时检索环境变量,扩展了仅仅 Cloudflare Workers 的绑定。可以使用 env(c) 检索的值可能因运行时而异。

ts
import { env } from 'hono/adapter'

app.get('/env', (c) => {
  // NAME is process.env.NAME on Node.js or Bun
  // NAME is the value written in `wrangler.toml` on Cloudflare
  const { NAME } = env<{ NAME: string }>(c)
  return c.text(NAME)
})

支持的运行时、无服务器平台和云服务

指定运行时

您可以通过将运行时键作为第二个参数传递来指定要获取环境变量的运行时。

ts
app.get('/env', (c) => {
  const { NAME } = env<{ NAME: string }>(c, 'workerd')
  return c.text(NAME)
})

getRuntimeKey()

getRuntimeKey() 函数返回当前运行时的标识符。

ts
app.get('/', (c) => {
  if (getRuntimeKey() === 'workerd') {
    return c.text('You are on Cloudflare')
  } else if (getRuntimeKey() === 'bun') {
    return c.text('You are on Bun')
  }
  ...
})

可用的运行时键

以下列出了可用的运行时键,不支持的运行时键可能被支持并标记为 other,其中一些受 WinterCG 的运行时键 的启发。

  • workerd - Cloudflare Workers
  • deno
  • bun
  • node
  • edge-light - Vercel Edge Functions
  • fastly - Fastly Compute
  • other - 其他未知的运行时键

根据 MIT 许可发布。