An example project of the third-party middleware for Hono.
This middleware add X-Message
header to the Response.
import { hello } from '@hono/hello'
import { Hono } from 'hono'
const app = new Hono()
app.use('*', hello('Hello!! Hono!!'))
app.get('/', (c) => c.text('foo'))
export default app
Yusuke Wada https://github.com/yusukebe
MIT