Create runtime-checked structs with Zod
Find a file
2024-12-20 17:33:49 -06:00
node_modules init 2024-12-20 17:33:49 -06:00
.gitignore init 2024-12-20 17:33:49 -06:00
index.js init 2024-12-20 17:33:49 -06:00
LICENSE.md init 2024-12-20 17:33:49 -06:00
package-lock.json init 2024-12-20 17:33:49 -06:00
package.json init 2024-12-20 17:33:49 -06:00
README.md init 2024-12-20 17:33:49 -06:00

zod-struct

Create runtime-checked structs with Zod.

Usage

import Struct from "zod-struct"
import { z } from "zod"

const Person = new Struct(z.object({
  name: z.string(),
  email: z.string().email()
}))

const alice = new Person({
  name: "Alice",
  email: "[email protected]"
})

// Checks validity with schema on property change
alice.name = "Alice Example"