zod-compiler

August 14, 2026 · View on GitHub

Compile Zod schemas into zero-overhead validation functions at build time.

Keep your existing Zod schemas. Get 1.2-43x faster validation, and up to 190x on rejected input. No code changes required.

Note

zod-compiler has been tested to work in large projects with tens of thousands of Zod schemas.

Usage

Five ways to use zod-compiler — pick one:

1. Automatic Mode (Default)

The plugin detects and compiles every exported Zod schema at build time. No wrappers, no imports from zod-compiler in your source.

vite.config.ts:

import zodCompiler from "zod-compiler/vite";

export default defineConfig({
  plugins: [zodCompiler()],
});

Your schema file stays pure Zod:

// src/schemas.ts
import { z } from "zod";

export const CreateUserSchema = z.object({
  name: z.string().min(1).max(100),
  email: z.email(),
  role: z.enum(["admin", "editor", "viewer"]),
});

Use them as usual. Methods are installed on the original schema object, so .shape, ._zod, Standard Schema, instanceof and z.toJSONSchema() keep working.

Compiled schemas also expose .is(input): input is T — a zero-allocation drop-in for safeParse(x).success.

2. compile() (Explicit)

If you prefer explicit opt-in, wrap specific schemas with compile():

import { z } from "zod";
import { compile } from "zod-compiler";

const UserSchema = z.object({
  name: z.string().min(3),
  email: z.email(),
});

export const validateUser = compile(UserSchema);

// In dev: falls back to Zod's runtime validation
// After build: uses AOT-compiled optimized code
validateUser.parse(data);
validateUser.safeParse(data);

compile() and auto mode coexist. Pair with schemas: "explicit" to make compile() the only path — no automatic detection, no build-time execution of plain schema files.

3. CLI (No Bundler)

Generate optimized validation files from the command line:

# Single file
npx zod-compiler generate src/schemas.ts -o src/schemas.compiled.ts

# Directory
npx zod-compiler generate src/ -o src/compiled/

# Watch mode
npx zod-compiler generate src/ --watch

# Only compile() calls (skip plain exports); minimal methods-only output
npx zod-compiler generate src/ --schemas explicit --emit bag

# Compact output: fast path only, cold errors delegated to Zod (~70% smaller)
npx zod-compiler generate src/ --emit compact

4. Runtime Compilation (No Build Step)

jit() runs the same pipeline in-process, for tsx, ts-node, Jest — anywhere no plugin fires:

import { jit } from "zod-compiler/jit";

export const UserSchema = jit(z.object({ name: z.string().min(1), email: z.email() }));

Same validators a build emits, installed on the schema object, so Zod interop is unchanged. Compilation is lazy — 0.1-0.3 ms on a schema's first parse; { eager: true } compiles up front, jitAll(namespace) takes a whole module.

The cost is the import: ~570 KB of codegen and acorn, ~10 ms of module load. That suits a long-lived process, not a CLI, a cold serverless handler or a browser — use the build plugin there. Libraries should ship plain Zod and let the app decide.

Needs new Function, as Zod's own object fast-path does. z.config({ jitless: true }) and a CSP that blocks eval both leave a working plain-Zod schema.

5. Node.js Register Hook

Node.js 22.15+ can automatically insert the equivalent of jit() for exported schemas as modules load, with no source changes and no bundler:

node --import zod-compiler/register src/server.js

The same preload handles ESM imports, CommonJS require(), and Node's native TypeScript formats. It also chains with TypeScript runners:

node --import zod-compiler/register --import tsx src/server.ts

This is runtime JIT instrumentation, not the AOT source rewriting performed by the Vite, Rsbuild, and other build plugins. The hook identifies exported schema bindings and registers their live Zod objects; validators are generated in-process, lazily on first use. It does not execute modules twice and adds no transform cache beyond Node's module cache. Use a build plugin or the CLI when generated validator code must exist before Node starts or runtime new Function is unavailable.

Optional settings come from zod-compiler.json in the working directory:

{
  "$schema": "./node_modules/zod-compiler/schema.json",
  "include": ["src/**"],
  "exclude": ["**/*.test.ts"],
  "schemas": "auto",
  "eager": false,
  "output": "schema",
  "hoist": true
}

output: "compact" preserves the Zod schema and compiled valid-input fast path while delegating cold error production to Zod. Full "schema" output remains the default. "bag" is unavailable because a load hook cannot replace already-linked ESM export bindings safely.

Build Plugin

Supported Build Tools

Build ToolImport
Viteimport zodCompiler from "zod-compiler/vite"
webpackimport zodCompiler from "zod-compiler/webpack"
Turbopack / Next.jsloaders: ["zod-compiler/turbopack"]
esbuildimport zodCompiler from "zod-compiler/esbuild"
SWCimport zodCompiler from "zod-compiler/swc"
Rollupimport zodCompiler from "zod-compiler/rollup"
Rolldownimport zodCompiler from "zod-compiler/rolldown"
Rsbuildimport zodCompiler from "zod-compiler/rsbuild"
rspackimport zodCompiler from "zod-compiler/rspack"
Bunimport zodCompiler from "zod-compiler/bun"
Farmimport zodCompiler from "zod-compiler/farm"

Turbopack takes a loader rather than a plugin — see Next.js (Turbopack). Metro has neither — see React Native / Expo.

Options

OptionTypeDefaultDescription
schemas"auto" | "explicit""auto""auto" compiles every exported schema (and hoisted in-function ones); "explicit" only compile() calls
includestring[]Only process files matching these path globs
excludestring[]Skip files matching these path globs
output"schema" | "bag" | "compact""schema"What a compiled export evaluates to — see Compact Output
verbosebooleanfalseLog per-schema compilation status
hoistbooleantrueMove schemas built inside functions to module scope — see Schema Hoisting
apply"build" | "serve" | "all"builds + VitestVite only: when the plugin runs
codegenMode"lean" | "inline"auto"inline" emits helpers per file; needed for transpile-only esbuild — see SWC
cacheboolean | stringtruePersistent transform cache in node_modules/.cache/zod-compiler
zodCompiler({
  include: ["src/schemas"],
  verbose: true,
});

rsbuild.config.ts:

import { defineConfig } from "@rsbuild/core";
import zodCompiler from "zod-compiler/rsbuild";

export default defineConfig({
  plugins: [zodCompiler()],
});

Note: Vitest is detected automatically (via the VITEST env var), so tests compile and exercise the same validators that ship to production — including their performance. Pass apply: "build" if you want tests to use the plain Zod fallback instead.

Bun

Applies wherever your code passes through a build step. Requires Bun ≥ 1.2.22.

import zodCompiler from "zod-compiler/bun";

await Bun.build({ entrypoints: ["./src/index.tsx"], outdir: "./dist", plugins: [zodCompiler()] });

For code run straight from source (bun run src/server.ts) no build plugin fires — use jit() to compile in-process, or the CLI to compile ahead of time.

Schema Hoisting

Schemas built inside functions are rebuilt on every call. With hoist (on by default) they move to module scope:

// before                                  // after
function getSchema() {
  const _zh_94b7 = z.object({ name: z.string() });
  return z.object({ name: z.string() });
  function getSchema() {}
  return _zh_94b7;
}

Only expressions built from imported bindings and literals move; anything touching locals, this or new Date() stays put. Combinator chains on imported schemas qualify via schemaNamePattern (default /ZodSchema$/).

In auto mode hoisted schemas also compile, rescuing the schema that never leaves a function (a slonik query, a tRPC input) and so is invisible to export scanning: ~16,700 ns → ~14 ns per call.

Bundle Size & Cross-File Dedup

Validators share a runtime helper layer imported from one module, so each helper appears once per bundle. Schemas in a file sharing a structurally identical sub-shape emit its error walk once — 19-28% raw / 10-18% gzipped, scaling with how much the file repeats.

Build plugins serve that module from a resolve hook (virtual:zod-compiler/runtime, or __zod-compiler-runtime__ on webpack and rspack, which reject the virtual: scheme). A loader host has no hook, so Turbopack imports the same code from the real subpath zod-compiler/runtime instead — opt-in there, since it only pays off where the host bundles that import rather than leaving it external.

Transpile-only esbuild builds (no --bundle) never fire the bundler's resolve hooks, so the virtual: specifier would survive into dist/ and fail at runtime. Set codegenMode: "inline" to emit helpers per file instead:

export default [zodCompiler({ schemas: "explicit", codegenMode: "inline" })];

Set output: "bag" to also drop the retained Zod schema when you don't need .shape / instanceof.

Next.js (Turbopack)

Turbopack — the default since Next.js 16 — runs webpack loaders but no webpack plugins, so use the loader entry point:

// next.config.ts
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  turbopack: {
    rules: {
      "*.{ts,tsx}": {
        condition: {
          all: [
            { not: "foreign" }, // skip node_modules
            { content: /[Zz]od/ }, // skip files that cannot contain a schema
          ],
        },
        loaders: ["zod-compiler/turbopack"],
      },
    },
  },
};

export default nextConfig;

Automatic mode, unchanged sources, next dev and next build. Options go in the object form — loaders: [{ loader: "zod-compiler/turbopack", options: { verbose: true } }] — and must be plain JSON, so hoist.schemaNamePattern takes a string, not a RegExp.

Three things worth knowing:

  • Keep the content pattern loose. Narrowing it to "zod" skips zod/v4, zod/mini and the zod-compiler import behind schemas: "explicit" — those files just quietly stay uncompiled.
  • codegenMode: "lean" is App-Router-only. It shares one copy of the helpers across the bundle, but Pages Router server code externalizes node_modules imports unless bundlePagesRouterDependencies is on, so a devDependency install throws ERR_MODULE_NOT_FOUND in production.
  • A "use server" file can only export async functions, so keep schemas there inside a function — hoisting still compiles them. "use client" modules need nothing special.

Turbopack caches loader results itself, so cache .next/cache in CI rather than node_modules/.cache/zod-compiler. next dev --webpack / next build --webpack still work, with zod-compiler/webpack in a webpack() config as usual.

SWC

A programmatic @swc/core bridge wrapping transform(), not a .swcrc plugin. Install @swc/core, then:

import { transform } from "zod-compiler/swc";

const result = await transform(sourceCode, {
  filename: "src/schemas.ts",
  swc: { jsc: { parser: { syntax: "typescript" } } },
});

Defaults codegenMode to "inline" (SWC has no virtual-module hook); pass zodCompiler: { codegenMode: "lean" } if a later bundler resolves the runtime specifier. Honours include/exclude and keeps no disk cache.

React Native / Expo

There is no Metro plugin — unplugin has no Metro adapter. Use the CLI; Metro bundles what it emits as ordinary source:

npx zod-compiler generate src/schemas/ -o src/schemas/compiled/ --watch

Worth the step: Hermes ships no JIT and no new Function, so Zod's own object fast path is unavailable on device and jit() cannot run there at all.

Keep schema modules free of react-native and expo-* imports, transitively — discovery executes each file and its import graph in Node (in both modes), and one that throws falls back to runtime Zod silently.

Compact Output (output: "compact")

Compiles the fast path and delegates the cold error path to the retained Zod schema, dropping ~73% raw / ~71% gzipped on 50 distinct schemas. The hot path is unchanged and errors are Zod's own; only reading .error invokes Zod. Mutually exclusive with output: "bag".

zodCompiler({ output: "compact" });

Workers and Serverless Startup

Workers often construct every imported schema during module initialization, even when an isolate only validates a few of them. Compiling all of those schemas can improve validation while increasing bundle size and startup work. Compact output reduces compiler-generated error-path code, but still retains the original Zod schema and does not make eager schema construction lazy.

Automatic discovery remains the default. If an application has a clear schema boundary, narrow include or use schemas: "explicit" to avoid compiling intermediate exports.

Use output: "bag" only when consumers do not need Zod APIs such as .shape, .extend(), .meta(), or z.toJSONSchema(); it can omit the retained schema entirely.

Measure startup separately from validation throughput using the target deployment and bundle.

Auto Mode: Side Effects Warning

Auto mode executes files to inspect their exports, so a file with schema-shaped exports and side effects runs them at build time. Limit the scan with include.

For the common env.ts that validates process.env and exits, zod-compiler sets process.env.ZOD_COMPILER during discovery and intercepts process.exit, so the build never crashes — those files just fall back to runtime Zod. To keep them compiled, guard on it:

if (!process.env.ZOD_COMPILER) {
  // ...validate and exit
}

With @t3-oss/env-*, pass skipValidation: !!process.env.ZOD_COMPILER.

A schema whose SHAPE branches on an env var is baked at build time, and the cache key does not include the environment — give each environment its own cache directory if you share one across them.

Large projects and CI

Discovery executes each schema file inside the bundler's process, so the first cold run is the expensive one — later runs hit the persistent cache.

- uses: actions/cache@v4
  with:
    path: node_modules/.cache/zod-compiler
    key: zod-compiler-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}

Scope discovery with include; set ZOD_COMPILER_TIMING=1 for a per-phase breakdown. Files that never mention zod cost nothing.

Framework Examples

Nothing framework-specific is needed — exported schemas are compiled in place, so anything accepting a Zod schema picks up the compiled version:

// tRPC — no .input(compile(...)) needed
t.procedure.input(CreateUserSchema).mutation(({ input }) => createUser(input));

// Hono
app.post("/users", zValidator("json", UserSchema), (c) => c.json(c.req.valid("json")));

// React Hook Form
useForm({ resolver: zodResolver(SignupSchema) });

The same applies to any Standard Schema consumer — ~standard.validate routes through the compiled validator.

Compiled methods live on the schema object, so Zod's functional API (z.safeParse(Schema, x)) and a compiled schema composed into an uncompiled parent stay on plain Zod.

Schema Diagnostics

Check coverage and Fast Path eligibility before compiling:

npx zod-compiler check src/schemas.ts

Output:

src/schemas.ts

  CreateUserSchema — 100% compiled (4/4 nodes) | Fast Path: eligible
    └─ ✓ object
       ├─ ✓ string .name
       ├─ ✓ string .email
       ├─ ✓ number .age
       └─ ✓ enum .role

  OrderSchema — 67% compiled (2/3 nodes) | Fast Path: ineligible (fallback (transform))
    └─ ✓ object
       ├─ ✓ string .id
       └─ ✓ object .metadata
          ├─ ✓ string .metadata.region
          └─ ✗ fallback .metadata.audit (transform)
                hint: Extract transform into a separate post-processing step

    Fallbacks:
      ✗ .metadata.audit — transform
        Extract transform into a separate post-processing step

CI Integration

# JSON output
npx zod-compiler check src/schemas.ts --json

# Fail if any schema below 80% coverage
npx zod-compiler check src/schemas.ts --json --fail-under 80
FlagDescription
--jsonStructured JSON output
--fail-under <pct>Exit code 1 if coverage below threshold
--no-colorDisable colored output

What Gets Compiled

Fully Compiled (1.2-43x faster)

Every Zod type except the fallbacks below — all primitives, object / strictObject / looseObject, array, tuple, record, set, map, union, discriminatedUnion, intersection, pipe, the optional / nullable / readonly / default / catch / coerce wrappers, templateLiteral, recursive lazy (self, mutual and nested), custom / instanceof, and transform / refine / superRefine.

All standard checks are supported: min, max, length, email, uuid, regex, int, positive, multipleOf, includes, startsWith, and the rest.

Falls Back to Zod (Still Works, Not Faster)

A schema delegates to Zod when it reaches JavaScript the generated code cannot reproduce:

ConstructWhy
.check(fn), superRefine + later checksThe callback holds Zod's payload unmediated, or fatal aborts Zod's chain
ctx-taking or async callbacksNeeds Zod's parse context / the async pipeline
z.url(), z.jwt()Algorithmic formats (new URL(), signature parsing)
Overlapping or policy-sensitive object intersectionsZod's independent parse-and-merge semantics cannot be safely collapsed
.readonly() over a pass-through containerZod freezes the output it rebuilt; these are the caller's own input
Dynamic error maps, unresolvable z.lazy()Not knowable at build time

Everything else compiles, including context-free preprocess callbacks and transform/refine/superRefine whether or not the callback captures — a zero-capture one is inlined, a capturing one called by reference. Delegation is per-sub-schema: one uncompilable field goes to Zod, not the whole object. Run zod-compiler check to see what compiled.

Behavioral Differences from Zod

Compiled validators match Zod on verdicts, output data and error messages, including issue ordering. Three things differ by design:

BehaviorZodzod-compiler
Record key iterationAll own keys (Reflect.ownKeys)Own enumerable string keys only
Container output identityA fresh array / set / map / objectThe input container, by reference (array holes survive)
Per-call parse paramssafeParse(x, { error, reportInput }) honouredIgnored; global z.config() maps still apply

Schema-level error and z.config() maps are unaffected; for a per-call map use z.safeParse(Schema, x, params).

z.object() strips unknown keys exactly as Zod does, so its output is always a fresh object.

Benchmark

5-way comparison: Zod v3 vs Zod v4 vs zod-compiler vs Typia vs AJV

ScenarioZod v3Zod v4zod-compilerTypiaAJVvs Zod v4
simple string12.6M14.3M16.5M17.8M17.6M1.2x
string (min/max)12.5M7.5M15.9M17.0M15.2M2.1x
number (int+positive)12.3M7.8M16.6M16.8M17.3M2.1x
enum11.7M12.1M16.2M17.7M17.3M1.3x
bigint (min/max)12.0M7.7M15.9M2.1x
tuple [string, int, bool]5.8M6.5M15.7M17.1M16.3M2.4x
record<string, number>3.2M2.8M15.2M12.1M15.2M5.5x
set<string> (5 items)3.7M2.3M14.7M6.4x
set<string> (20 items)1.3M683K12.0M18x
map<string, number> (5 entries)2.1M1.4M13.1M9.6x
map<string, number> (20 entries)635K362K8.3M23x
pipe (non-transform)8.6M5.6M15.9M2.8x
discriminatedUnion (3 variants)3.3M4.0M15.8M15.5M7.7M4.0x
discriminatedUnion (8 variants, rotating)2.7M3.4M9.2M2.7x
plain union of 8 tagged objects (auto-discrim.)363K632K9.1M14x
strict object (DB row)1.8M3.1M10.9M3.5x
medium object (valid)1.9M2.4M9.7M11.2M7.7M4.1x
medium object (extra keys stripped)1.8M2.3M9.4M4.2x
medium object (invalid)504K80K14.7M2.9M7.7M184x
large object (10 items)122K166K5.3M5.9M1.2M32x
large object (100 items)13K18K781K1.3M125K43x
readonly field (wrapper compiles away)3.1M4.4M15.7M3.6x
readonly root object (rebuild + freeze)2.9M3.8M12.2M3.2x
readonly array (delegates to Zod)3.9M2.9M2.9M1.0x
recursive tree (7 nodes)569K2.1M8.2M11.6M4.8M3.9x
recursive tree (121 nodes)32K135K800K1.9M372K5.9x
nested recursion (7 nodes)391K1.0M7.9M11.1M3.1M7.8x
nested recursion (121 nodes)24K62K818K1.6M218K13x
deeply nested object (243 leaves)11K20K828K1.1M117K42x
event log (combined)368K609K8.2M13x
object with transform (zero-capture)1.2M1.9M6.5M3.4x
array 10 × transform (zero-capture)121K214K4.2M20x
array 50 × transform (zero-capture)25K44K1.0M24x
object with captured transform1.4M6.3M15.1M2.4x
object with captured refine (cross-field)1.6M2.4M15.3M6.3x
object with superRefine (cross-field)1.6M2.3M11.6M5.0x
coerced query object (valid)1.9M2.3M5.2M2.2x
coerced query object (invalid)1.1M162K10.1M62x
preprocessed query object (valid)426K1.6M5.3M3.4x
preprocessed query object (invalid)387K149K12.4M84x
stringbool config object (valid)1.9M6.0M3.1x
stringbool config object (invalid)129K13.1M101x
custom/instanceof request (valid)894K3.0M8.6M2.9x
custom/instanceof request (invalid)755K158K8.5M54x
disjoint object intersection (valid)1.4M1.7M9.7M5.7x
disjoint object intersection (invalid)548K80K15.3M190x

ops/s, higher is better. vp test bench on an Apple M4 Max (zod 4.3.6, zod v3 3.23.8, typia 12, ajv 8), best of three runs. The harness costs ~55 ns per iteration, so the fastest rows sit at that floor and gaps between the AOT columns there are noise, not real.

Nested objects, arrays and recursive types gain the most. Rejection is fast because a failed safeParse defers building the error until .error is read.

vp run benchmark # run locally

Performance Architecture

An eligible schema compiles to a fast path — one && chain validating the whole input with zero allocations, reused by .is() and parse() — plus a slow path that collects errors, run only on failure and deferred until .error is read. A z.object() strips, so it instead compiles to a single pass that validates and rebuilds together, bailing on the first failure — including the reshaping idioms (array size checks, .refine(), .default(), .trim(), .transform()).

Regexes are pre-compiled with bounded repeats unrolled, checks run cheapest-first, discriminated unions dispatch through a jump table (plain tagged unions are auto-discriminated into it), and oversized check functions are split to stay within V8's optimizer budget. Stripping objects, native coercions, stringbool, defaults, string rewrites, context-free preprocessors and synchronous transforms validate and build their output in one pass. An intersection of two objects with disjoint keys compiles to that same single pass over the merged shape, and z.custom() / z.instanceof() compile to a direct predicate call.

Where success is cheaper to compile than failure, only the verdict and output are compiled: intersections and custom keep the original Zod schema to construct issues, so a rejection still reports exactly what Zod would — including an intersection's one-issue-per-side shape — without slowing the hot path.

Development

vp install
vp test
vp run benchmark
vp run lint

Acknowledgements

zod-compiler started as a fork of zod-aot by @wakita181009.