#ajv
Read more stories on Hashnode
Articles with this tag
The latest Release 0.9 of the Schema Validation Toolkit - ajv-ts brings a suite of enhancements to improve developer productivity and ensure better...
Note: The library is not an official ajv extension What's up, guys! Today I will show you a massive product update for the library inspired by zod -...
Installation/Update npm i ajv-ts@latest # npm yarn add ajv-ts@latest # yarn pnpm add ajv-ts@latest # pnpm bun add ajv-ts@latest # bun New...
New Features Now schema builder supports custom error messages. import s from 'ajv-ts' const num = s.number().error('cannot be not a number') const...