@hono/zod-validator

Type-safe request validation middleware for Hono, powered by Zod schemas.

Library
npm
v0.9.0
975stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
90/100Excellent
Development Activity100
Maintenance100
Community68
Maturity52
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
87/100Excellent
Architecture86
Code Quality85
Innovation90
Learning Curve85

@hono/zod-validator is the official validation middleware for the Hono web framework, bridging Zod’s schema-based validation into the request pipeline. Define a Zod schema, wrap it in the zValidator helper, and every incoming JSON body, query string, route parameter, form field, or header is validated before your handler runs.

Beyond runtime checks, the middleware infers the fully-typed validated value so c.req.valid('json') returns a strongly-typed object with no manual casting. It supports both Zod v3 and v4, custom validation functions, and error hooks that let you shape or short-circuit invalid responses.

What You Get

  • A single zValidator helper that validates any request target: json, form, query, param, header, or cookie
  • End-to-end type inference so c.req.valid(target) returns the schema’s output type with no manual casting
  • Support for both Zod v3 and Zod v4 schemas from the same API
  • An optional hook to customize error responses or throw instead of returning the default 400
  • A validationFunction option to override the default safeParseAsync behavior (e.g. passthrough parsing)

Common Use Cases

  • Validating and typing JSON request bodies for REST and RPC-style Hono APIs
  • Guarding query strings and route parameters before business logic executes
  • Normalizing and validating request headers with case-insensitive key matching
  • Returning consistent, structured 400 error payloads for malformed input

Under The Hood

Architecture The entire package is a single src/index.ts that exports one function, zValidator, aliased over an internal zValidatorFunction. That function delegates to Hono’s built-in validator(target, cb) from hono/validator, supplying an async callback that runs the schema against the request target. When the target is header, it first remaps Hono’s lowercased header keys back to the schema’s original keys via a case-insensitive keymap. It then calls schema.safeParseAsync (or a user-supplied validationFunction), passes the result through an optional hook, returns c.json(result, 400) on failure, and otherwise hands the typed result.data back to Hono to expose via c.req.valid(target).

Tech Stack Written entirely in TypeScript and shipped as dual ESM/CJS via tsdown. It declares hono (>=4.11.2) and zod (^3.25 || ^4) as peer dependencies, so it carries no runtime dependencies of its own. It publishes to npm with provenance and also targets JSR/Deno (a deno.json is present). Tests run under Vitest.

Code Quality The package is small but heavily type-driven: overloaded signatures distinguish the hook and non-hook call forms, and conditional types (ZodError, zInfer, ExtractValidationResponse) derive precise input/output and error-response types across both Zod v3 and v4. Test coverage is explicit, with separate v3.test.ts and v4.test.ts suites exercising each supported Zod major version. A handful of @ts-expect-error pragmas bridge the two Zod type systems where their internal shapes diverge.

API Design The public surface is a single, well-named zValidator(target, schema, hook?, options?) helper, which keeps the learning curve low: one import, one call per route. Type inference means callers rarely annotate anything, and the README documents the common patterns (basic validation, error hooks, throwing errors, custom validation functions) with concise runnable snippets.

Used by 11 apps in this directory

TypeScript
76%
AGPL 3.0

Abby

Developer Tools · Product Management

167

Statically typed feature flags, remote config, and A/B testing with framework-native SDKs for TypeScript teams.

View details
30
Repo Health
70
Technical
63
Dependency
Built with
TypeScript76%
MDX18%
Updated 1 years ago
TypeScript
49%
AGPL 3.0

BrowserOS

Browser · AI Assistants

13,248

The open-source agentic Chromium browser with native AI agents, MCP server, and visual workflow automation — your data never leaves your machine.

View details
87
Repo Health
82
Technical
69
Dependency
Built with
TypeScript49%
Rust22%
Python16%
Updated today
TypeScript
55%
Other

Cap

Team Chat · Video Conferencing

20,986

Open source Loom alternative with GPU-accelerated recording, instant share links, AI summaries, and full self-hosting via Docker Compose.

View details
89
Repo Health
81
Technical
65
Dependency
Built with
TypeScript55%
Rust40%
Updated yesterday
TypeScript
99%
Other

Dokploy

Devops · Hosting Control Panel · Security

36,702

Self-hosted PaaS that deploys apps and databases on your own VPS using Docker, Traefik, and multi-build-system orchestration

View details
89
Repo Health
76
Technical
65
Dependency
Built with
TypeScript99%
Updated yesterday
TypeScript
99%
AGPL 3.0

Karakeep

Bookmarks Archiving

28,454

Self-hosted bookmark manager that captures links, notes, images, and PDFs with AI tagging, full-text search, and automatic archiving.

View details
88
Repo Health
76
Technical
67
Dependency
Built with
TypeScript99%
Updated 3 days ago
TypeScript
97%
MIT

likec4

Developer Tools · Devops

5,448

Define your software architecture as code and get always up-to-date, interactive C4 diagrams generated automatically from a DSL.

View details
88
Repo Health
83
Technical
80
Dependency
Built with
TypeScript97%
Updated today
TypeScript
95%
Other

LLM Gateway

AI Development · Devops

1,555

One API endpoint for 25+ LLM providers — route, track costs, enforce compliance, and switch models without changing your code.

View details
85
Repo Health
80
Technical
72
Dependency
Built with
TypeScript95%
Updated today
TypeScript
99%
Other

LobeHub

AI Assistants · Productivity · Automation

81,816

Your Chief Agent Operator — build, schedule, and collaborate with an entire AI team in one self-hostable workspace.

View details
92
Repo Health
81
Technical
72
Dependency
Built with
TypeScript99%
Updated today
TypeScript
80%
AGPL 3.0

OpenStatus

Monitoring · Devops

8,993

Open-source status pages and uptime monitoring with global synthetic checks, monitoring-as-code, and AI agent integration via MCP.

View details
76
Repo Health
82
Technical
72
Dependency
Built with
TypeScript80%
MDX16%
Updated yesterday

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search