@hono/zod-validator
v0.4.1
Published
Validator middleware using Zod
Downloads
774,621
Readme
Zod validator middleware for Hono
The validator middleware using Zod for Hono applications. You can write a schema with Zod and validate the incoming values.
Usage
import { z } from 'zod'
import { zValidator } from '@hono/zod-validator'
const schema = z.object({
name: z.string(),
age: z.number(),
})
app.post('/author', zValidator('json', schema), (c) => {
const data = c.req.valid('json')
return c.json({
success: true,
message: `${data.name} is ${data.age}`,
})
})
Hook:
app.post(
'/post',
zValidator('json', schema, (result, c) => {
if (!result.success) {
return c.text('Invalid!', 400)
}
})
//...
)
Author
Yusuke Wada https://github.com/yusukebe
License
MIT