Context
Request / Response を処理するには、 Context
オブジェクトを使用します。
req
req
は HonoRequest のインスタンスです。
app.get('/hello', (c) => {
const userAgent = c.req.header('User-Agent')
// ...
})
body()
HTTP レスポンスを返します。
c.header()
でヘッダをセットし、 c.status
で HTTP ステータスコードを指定します。 これは c.text()
や c.json()
などでも同じように設定できます。
INFO
Note: テキストや HTML を返す場合は、 c.text()
や c.html()
を使ってください。
app.get('/welcome', (c) => {
// Set headers
c.header('X-Message', 'Hello!')
c.header('Content-Type', 'text/plain')
// Set HTTP status code
c.status(201)
// Return the response body
return c.body('Thank you for coming')
})
このように書くこともできます。
app.get('/welcome', (c) => {
return c.body('Thank you for coming', 201, {
'X-Message': 'Hello!',
'Content-Type': 'text/plain',
})
})
以下と同じです。
new Response('Thank you for coming', {
status: 201,
headers: {
'X-Message': 'Hello!',
'Content-Type': 'text/plain',
},
})
text()
Content-Type:text/plain
でテキストをレンダリングします。
app.get('/say', (c) => {
return c.text('Hello!')
})
json()
Content-Type:application/json
で JSON をレンダリングします。
app.get('/api', (c) => {
return c.json({ message: 'Hello!' })
})
html()
Content-Type:text/html
で HTML をレンダリングします。
app.get('/', (c) => {
return c.html('<h1>Hello! Hono!</h1>')
})
notFound()
Not Found
レスポンスを返します。
app.get('/notfound', (c) => {
return c.notFound()
})
redirect()
リダイレクトします。 デフォルトのステータスコードは 302
です。
app.get('/redirect', (c) => {
return c.redirect('/')
})
app.get('/redirect-permanently', (c) => {
return c.redirect('/', 301)
})
res
// Response object
app.use('/', async (c, next) => {
await next()
c.res.headers.append('X-Debug', 'Debug message')
})
set() / get()
Get and set arbitrary key-value pairs, with a lifetime of the current request. This allows passing specific values between middleware or from middleware to route handlers.
app.use(async (c, next) => {
c.set('message', 'Hono is cool!!')
await next()
})
app.get('/', (c) => {
const message = c.get('message')
return c.text(`The message is "${message}"`)
})
Variables
ジェネリクスを Hono
に渡すと型安全になります。
type Variables = {
message: string
}
const app = new Hono<{ Variables: Variables }>()
The value of c.set
/ c.get
are retained only within the same request. They cannot be shared or persisted across different requests.
var
c.var
を使用しても変数の値にアクセスできます。
const result = c.var.client.oneMethod()
カスタムメソッドを提供するミドルウェアを作成したい場合は、 このように書きます:
type Env = {
Variables: {
echo: (str: string) => string
}
}
const app = new Hono()
const echoMiddleware = createMiddleware<Env>(async (c, next) => {
c.set('echo', (str) => str)
await next()
})
app.get('/echo', echoMiddleware, (c) => {
return c.text(c.var.echo('Hello!'))
})
If you want to use the middleware in multiple handlers, you can use app.use()
. Then, you have to pass the Env
as Generics to the constructor of Hono
to make it type-safe.
const app = new Hono<Env>()
app.use(echoMiddleware)
app.get('/echo', (c) => {
return c.text(c.var.echo('Hello!'))
})
render() / setRenderer()
カスタムミドルウェア内で c.setRenderer()
を使用してレイアウトを設定できます。
app.use(async (c, next) => {
c.setRenderer((content) => {
return c.html(
<html>
<body>
<p>{content}</p>
</body>
</html>
)
})
await next()
})
次に、 c.render()
を使用してそのレイアウトでレスポンスを作成します。
app.get('/', (c) => {
return c.render('Hello!')
})
このような出力になります:
<html>
<body>
<p>Hello!</p>
</body>
</html>
また、この機能は柔軟に引数を設定することもできます。 型安全のために、型を次のように設定できます:
declare module 'hono' {
interface ContextRenderer {
(
content: string | Promise<string>,
head: { title: string }
): Response | Promise<Response>
}
}
使用例を以下に示します:
app.use('/pages/*', async (c, next) => {
c.setRenderer((content, head) => {
return c.html(
<html>
<head>
<title>{head.title}</title>
</head>
<body>
<header>{head.title}</header>
<p>{content}</p>
</body>
</html>
)
})
await next()
})
app.get('/pages/my-favorite', (c) => {
return c.render(<p>Ramen and Sushi</p>, {
title: 'My favorite',
})
})
app.get('/pages/my-hobbies', (c) => {
return c.render(<p>Watching baseball</p>, {
title: 'My hobbies',
})
})
executionCtx
// ExecutionContext object
app.get('/foo', async (c) => {
c.executionCtx.waitUntil(c.env.KV.put(key, data))
// ...
})
event
// Type definition to make type inference
type Bindings = {
MY_KV: KVNamespace
}
const app = new Hono<{ Bindings: Bindings }>()
// FetchEvent object (only set when using Service Worker syntax)
app.get('/foo', async (c) => {
c.event.waitUntil(c.env.MY_KV.put(key, data))
// ...
})
env
Cloudflare Workers の環境変数、シークレット、 KV ネームスペース、 D1 データベース、 R2 バケット等... をバインディングと呼びます。 種類に関係なく、バインディングは常にグローバル変数として利用でき、 c.env.BINDING_KEY
からアクセスできます。
// Type definition to make type inference
type Bindings = {
MY_KV: KVNamespace
}
const app = new Hono<{ Bindings: Bindings }>()
// Environment object for Cloudflare Workers
app.get('/', async (c) => {
c.env.MY_KV.get('my-key')
// ...
})
error
ハンドラでエラーが発生した場合、エラーオブジェクトは c.error
に格納されます。 ミドルウェアからアクセスできます。
app.use(async (c, next) => {
await next()
if (c.error) {
// do something...
}
})
ContextVariableMap
例えば、特定のミドルウェアを使うときに変数へ型定義を追加したい場合、このように ContextVariableMap
を使用できます:
declare module 'hono' {
interface ContextVariableMap {
result: string
}
}
これをミドルウェアで利用できます:
const mw = createMiddleware(async (c, next) => {
c.set('result', 'some values') // result is a string
await next()
})
ハンドラで、変数は適切な型を推論されます:
app.get('/', (c) => {
const val = c.get('result') // val is a string
// ...
return c.json({ result: val })
})