1.0.0 • Published 12 months ago

json-to-zod-tools v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

Json-to-Zod

Summary

A very simple CLI tool to convert JSON objects or files into zod schemas.

Usage

CLI

json-to-zod -s myJson.json -t mySchema.ts

Options:

Programmatic

import { jsonToZod } from "json-to-zod"

const myObject = {
    hello: "hi"
}

const result = jsonToZod(myObject)

console.log(result)

Expected output:

const schema = z.object({hello: z.string()});

Overriding zod values

Since zod can be more specific about the primitives sometime you want to be more precise.

Eg. if an string has been parsed to:

z.string();

But you know it is a date and therefor should be called:

z.string().date();

Then you can create a configuration file called: .jtzrc.yml and define schema overrides there.

Take a look at the .jtzrc.yml.example file.

1.0.0

12 months ago

0.0.1

12 months ago