适配器助手
适配器助手提供了一种无缝的方式,通过统一的接口与各种平台进行交互。
导入
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)
})
支持的运行时、无服务器平台和云服务
- Cloudflare Workers
wrangler.toml
- Deno
Deno.env
.env
文件
- Bun
Bun.env
process.env
- Node.js
process.env
- Vercel
- AWS Lambda
- Lambda@Edge
Lambda@Edge 不支持 AWS Lambda 上的环境变量,您需要使用 Lamdba@Edge 事件 作为替代方案。 - Fastly Compute
在 Fastly Compute 上,您可以使用 ConfigStore 来管理用户定义的数据。 - Netlify
在 Netlify 上,您可以使用 Netlify 上下文 来管理用户定义的数据。
指定运行时
您可以通过将运行时键作为第二个参数传递来指定要获取环境变量的运行时。
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 Workersdeno
bun
node
edge-light
- Vercel Edge Functionsfastly
- Fastly Computeother
- 其他未知的运行时键