decs / typeschema

πŸ›΅ Universal adapter for TypeScript schema validation.

Home Page:https://typeschema.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


TypeSchema

TypeSchema

Universal adapter for schema validation
✨ https://typeschema.com ✨


License Bundle size npm downloads GitHub stars

Quickstart   β€’   Coverage   β€’   API   β€’   GitHub   β€’   npm


When fetching data from an external source, it's important to verify its integrity. This happens when processing user inputs, calling third-party APIs, loading configuration files, and so on. And the thing is: Typescript doesn't come with runtime validation. Any type assertions are removed at compile-time.

As a result, developers turn to third-party validation libraries. But that landscape is fragmented, lacking a single best option. Each offers different trade-offs on developer experience, bundle size, and community support.

TypeSchema enables writing code that works with any validation library out-of-the-box. It provides a universal adapter for interacting with any validation schema, decoupling from implementation specifics and increasing compatibility.

import {validate} from '@typeschema/main';

import {z} from 'zod';
import {string} from 'valibot';

const zodSchema = z.string();
await validate(zodSchema, '123');
//    ^? {success: true, data: '123'}

const valibotSchema = string();
await validate(valibotSchema, 123);
//    ^? {success: false, issues: [...]}

Quickstart

We value flexibility, which is why there are multiple ways of using TypeSchema:

  1. Using an adapter directly (e.g. @typeschema/valibot): Best pick for end developers, when the validation library is known ahead of time. This is particularly useful for supporting more validation libraries on tRPC.
  2. Handpicking adapters with @typeschema/main: Recommended for library maintainers. Any validation library can be used, but adapters have to be explicitly installed. This allows end developers to trade-off between coverage and bundle size.
  3. Batteries included with @typeschema/all: Easiest to use. All adapters are automatically installed, including future ones. This is a drop-in replacement for the deprecated @decs/typeschema.

Coverage

Project Popularity Infer InferIn Validation Serialization Adapter
zod GitHub stars βœ… βœ… βœ… βœ… @typeschema/zod
yup GitHub stars βœ… βœ… βœ… βœ… @typeschema/yup
joi GitHub stars 🧐 🧐 βœ… βœ… @typeschema/joi
ajv GitHub stars βœ… βœ… βœ… βœ… @typeschema/json
class-validator GitHub stars βœ… βœ… βœ… 🧐 @typeschema/class-validator
superstruct GitHub stars βœ… 🧐 βœ… 🧐 @typeschema/superstruct
io-ts GitHub stars βœ… βœ… βœ… 🧐 @typeschema/io-ts
valibot GitHub stars βœ… βœ… βœ… βœ… @typeschema/valibot
typebox GitHub stars βœ… βœ… βœ… βœ… @typeschema/typebox
typia GitHub stars βœ… βœ… βœ… 🧐 @typeschema/function
ow GitHub stars βœ… βœ… βœ… 🧐 @typeschema/ow
effect GitHub stars βœ… βœ… βœ… βœ… @typeschema/effect
arktype GitHub stars βœ… βœ… βœ… 🧐 @typeschema/arktype
deepkit GitHub stars 🧐 🧐 βœ… 🧐 @typeschema/deepkit
runtypes GitHub stars βœ… βœ… βœ… 🧐 @typeschema/runtypes
suretype GitHub stars βœ… βœ… βœ… βœ… @typeschema/suretype
valita GitHub stars βœ… βœ… βœ… 🧐 @typeschema/valita

API

Inference

  • Infer<TSchema>: Extracts the output type of a schema
  • InferIn<TSchema>: Extracts the input type of a schema

Validation

  • wrap(schema): Returns the wrapped schema with access to its operations
  • validate(schema, data): Returns the validated data or a list of validation issues
  • assert(schema, data): Returns the validated data or throws an AggregateError

Serialization

  • toJSONSchema(schema): Converts the schema into the equivalent JSON schema

Acknowledgements

About

πŸ›΅ Universal adapter for TypeScript schema validation.

https://typeschema.com

License:MIT License


Languages

Language:TypeScript 80.8%Language:MDX 10.7%Language:Handlebars 7.3%Language:HTML 0.8%Language:JavaScript 0.3%Language:CSS 0.0%