honojs-middleware/packages/typia-validator
Jonathan Haines 6e53f6e8f3
test: vitest include (#1297)
2025-07-11 08:28:28 +09:00
..
src chore: format codes (#1142) 2025-04-27 19:28:24 +09:00
CHANGELOG.md Version Packages (#1028) 2025-03-23 11:28:53 +09:00
README.md chore: add coverage badges (#1023) 2025-03-19 17:53:11 +09:00
deno.json chore: add jsr specifier for hono (#1277) 2025-07-04 10:47:19 +09:00
package.json refactor(release): version jsr without sponge (#1284) 2025-07-06 10:28:02 +09:00
tsconfig.build.json refactor(tsconfig): use `configDir` (#1238) 2025-06-19 16:52:41 +09:00
tsconfig.json refactor: composite build (#1230) 2025-06-16 11:23:47 +09:00
tsconfig.spec.json refactor(tsconfig): use `configDir` (#1238) 2025-06-19 16:52:41 +09:00
vitest.config.ts test: vitest include (#1297) 2025-07-11 08:28:28 +09:00

README.md

Typia validator middleware for Hono

codecov

The validator middleware using Typia for Hono applications.

Usage

You can use Basic Validation and HTTP Module Validation with Typia Validator.

Basic Validation

Use only the standard validator in typia.

import typia, { tags } from 'typia'
import { typiaValidator } from '@hono/typia-validator'

interface Author {
  name: string
  age: number & tags.Type<'uint32'> & tags.Minimum<20> & tags.ExclusiveMaximum<100>
}

const validate = typia.createValidate<Author>()

const route = app.post('/author', typiaValidator('json', validate), (c) => {
  const data = c.req.valid('json')
  return c.json({
    success: true,
    message: `${data.name} is ${data.age}`,
  })
})

Hook:

app.post(
  '/post',
  typiaValidator('json', validate, (result, c) => {
    if (!result.success) {
      return c.text('Invalid!', 400)
    }
  })
  //...
)

HTTP Module Validation

Typia's HTTP module allows you to validate query and header parameters with automatic type parsing.

  • Supported Parsers: The HTTP module currently supports "query" and "header" validations.
  • Parsing Differences: The parsing mechanism differs slightly from Hono's native parsers. Ensure that your type definitions comply with Typia's HTTP module restrictions.
import { Hono } from 'hono'
import typia from 'typia'
import { typiaValidator } from '@hono/typia-validator/http'

interface Author {
  name: string
  age: number & tags.Type<'uint32'> & tags.Minimum<20> & tags.ExclusiveMaximum<100>
}

interface IQuery {
  limit?: number
  enforce: boolean
  values?: string[]
  atomic: string | null
  indexes: number[]
}
interface IHeaders {
  'x-category': 'x' | 'y' | 'z'
  'x-memo'?: string
  'x-name'?: string
  'x-values': number[]
  'x-flags': boolean[]
  'x-descriptions': string[]
}

const app = new Hono()

const validate = typia.createValidate<Author>()
const validateQuery = typia.http.createValidateQuery<IQuery>()
const validateHeaders = typia.http.createValidateHeaders<IHeaders>()

app.get(
  '/items',
  typiaValidator('json', validate),
  typiaValidator('query', validateQuery),
  typiaValidator('header', validateHeaders),
  (c) => {
    const query = c.req.valid('query')
    const headers = c.req.valid('header')
    return c.json({
      success: true,
      query,
      headers,
    })
  }
)

Author

Patryk Dwórznik https://github.com/dworznik

License

MIT