Yup: Schema validation and parsing for runtime values
JavaScript schema validation with chainable API and type inference.
Learn more about Yup
Yup is a JavaScript schema validation library that combines parsing (value transformation) and assertion (validation testing) into a chainable API. It works by defining schemas composed of type definitions and validation rules, then applying those schemas to input values through validate(), validateSync(), or cast() methods. The library generates detailed error information when validation fails and supports complex interdependent validations across nested objects and arrays. Common use cases include form validation in web applications, API request/response validation, and data transformation pipelines.
TypeScript type inference
Schemas can automatically generate static TypeScript types via the InferType utility, allowing type safety without manual type definitions. Conversely, existing TypeScript types can be validated against schemas to ensure correctness.
Async validation support
Built-in support for asynchronous validation rules enables server-side validation checks and cross-field async operations within the same schema definition, rather than requiring separate client and server validation logic.
Parsing and validation combined
Schemas handle both type coercion and validation in a single pass. The cast() method performs type conversion without assertions, while validate() applies both transformations and tests, allowing flexible usage patterns.
import * as yup from 'yup';
const userSchema = yup.object({
email: yup.string().email().required(),
age: yup.number().positive().integer().min(18)
});
const userData = { email: 'user@example.com', age: 25 };
const validUser = await userSchema.validate(userData);Top in Developer Tools
Related Repositories
Discover similar tools and frameworks used by developers
Cursor
Local code editor with integrated LLM assistance.
tldr-pages
Community-maintained concise help pages for CLI tools with practical examples.
bat
Enhanced cat replacement with syntax highlighting and Git integration for file viewing.
wifi-password
Bash utility for extracting Wi-Fi passwords from macOS keychain storage.
CXX
Safe FFI library for calling C++ from Rust and vice versa with zero-overhead bindings via code generation.
Related Reading
Guides and comparisons from the Greptile content library
Greptile Ranks #1 on Martian's AI Code Review Benchmark
Greptile ranks #1 on Martian's independent online AI code review benchmark, leading all evaluated tools in F1 score and precision with near-leading recall.
AI Coding Tools: A 2026 Guide to Every Category
A 2026 guide to every category of AI coding tool: assistants, editors, code generators, code review, and testing tools.
10 Powerful Code Quality Tools That Catch Bugs Before Deployment
We tested 10 code quality tools that catch bugs before production. Detailed comparison with real-world examples, pricing, and ROI analysis for dev teams.
Best AI Code Review Tools for GitLab
Enterprise-grade AI code review tools for GitLab teams. In-depth comparison of accuracy, security, and integration features to accelerate your merge request workflows.