Dev Helper
Dev Helper 提供了你在开发中可以使用的实用方法。
ts
import { Hono } from 'hono'
import { getRouterName, showRoutes } from 'hono/dev'
getRouterName()
你可以使用 getRouterName()
获取当前使用的路由器的名称。
ts
const app = new Hono()
// ...
console.log(getRouterName(app))
showRoutes()
showRoutes()
函数在你的控制台中显示已注册的路由。
考虑如下的应用示例:
ts
const app = new Hono().basePath('/v1')
app.get('/posts', (c) => {
// ...
})
app.get('/posts/:id', (c) => {
// ...
})
app.post('/posts', (c) => {
// ...
})
showRoutes(app, {
verbose: true,
})
当这个应用开始运行时,路由将会在你的控制台中如下显示:
txt
GET /v1/posts
GET /v1/posts/:id
POST /v1/posts
选项
optional verbose: boolean
当设置为 true
时,它会显示详细信息。
optional colorize: boolean
当设置为 false
时,输出将不会被着色。