React/Next.js

zod 사용법

캐세이 2024. 4. 30. 23:57

설치

npm i zod

 

(기본 사용법)

main.ts

import { z } from "zod"

 

const UserSchema = z.object({

    username: z.string(),

    age: z.number(),

})

 

type User = z.infer<typeof UserSchema>

 

const user: User = { username : "Jeon" }

 

console.log(UserSchema.parse(user))