You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
zod 라이브러리는 파싱 라이브러리로, 원시값에서 복잡한 객체까지 쉽게 파싱할 수 있고, 기본값과 후처리 기능도 제공합니다.
사용하는 이유
compareExpect
함수를 사용하고 있지만, zod를 사용하면 훨씬 간결한 문법으로 표현할 수 있고, 타입스크립트 타입처럼 스키마를 자유롭게 조합해 더 복잡한 타입도 검증할 수 있습니다.사용예
zod를 사용하여 아래와 같은 코드를 대체할 수 있습니다.
frontend/src/util/typeCheck.js
Lines 16 to 42 in 71f9d1f
frontend/src/api/books/useGetBooksSearch.js
Lines 16 to 30 in 62278a3
Beta Was this translation helpful? Give feedback.
All reactions