Skip to content

预设 (Presets)

Hono 提供了几种路由,每种都为特定目的而设计。 你可以在 Hono 的构造函数中指定你想使用的路由。

预设 (Presets) 为常见用例而提供,因此你无需每次都指定路由。 从所有预设导入的 Hono 类是相同的,唯一的区别是路由。 因此,你可以互换使用它们。

hono

用法:

ts
import { 
Hono
} from 'hono'

路由:

ts
this.router = new SmartRouter({
  routers: [new RegExpRouter(), new TrieRouter()],
})

hono/quick

用法:

ts
import { 
Hono
} from 'hono/quick'

路由:

ts
this.router = new SmartRouter({
  routers: [new LinearRouter(), new TrieRouter()],
})

hono/tiny

用法:

ts
import { 
Hono
} from 'hono/tiny'

路由:

ts
this.router = new PatternRouter()

我应该使用哪个预设?

预设适用平台
hono强烈推荐在大多数用例中使用此预设。虽然注册阶段可能比 hono/quick 慢,但一旦启动,它会表现出高性能。它非常适合用 DenoBunNode.js 构建的长期运行的服务器。 对于诸如 Cloudflare WorkersDeno Deploy 等使用 v8 隔离的环境,此预设也适用。因为隔离在启动后会持续一段时间。
hono/quick此预设专为每次请求都初始化应用程序的环境而设计。Fastly Compute 以这种方式运行,因此建议在此类用例中使用此预设。
hono/tiny这是最小的路由包,适用于资源受限的环境。

在 MIT 许可证下发布。