v0.2.0
π΅ Universal adapter for TypeScript schema validation.
Repository
Current version released
a year ago
Many libraries rely on some sort of type validation. Their maintainers have the choice of either to:
- β Implement their own validation logic: which leads to more code to maintain, and we already have many good solutions out there (e.g. zod, arktype, typia)
- Couple their code with a specific validation library: which limits adoption by developers who use another
- Support multiple validation libraries: which is a burden to keep up-to-date (tRPC picked this one)
Thereβs no best validation library because thereβs always a tradeoff. Each developer chooses the library that makes the most sense to them. TypeSchema solves this problem by easily providing option 3: support multiple validation libraries out-of-the-box.
Features
- π Decouple your code from validation libraries
- π Tiny client footprint, zero dependencies
- β¨ Easy-to-use, minimal API
Setup
Install TypeSchema with your package manager of choice:
npm | npm install @decs/typeschema |
---|---|
Yarn | yarn add @decs/typeschema |
pnpm | pnpm add @decs/typeschema |
Usage
import type {Infer, Schema} from '@decs/typeschema';
import {assert} from '@decs/typeschema';
// Use your favorite validation library, e.g. `zod`, `arktype`, `typia`
const schema: Schema<string> = z.string();
const schema: Schema<string> = type('string');
const schema: Schema<string> = typia.createAssert<string>();
// Extracts the schema type
type Type = Infer<typeof schema>; // `string`
// Returns the validated data or throws an exception
await assert(schema, '123'); // '123'
await assert(schema, 123); // `Error`
API
Types
Schema<T>
Generic interface for schemasInfer<T as Schema<unknown>>
Extracts the equivalent TypeScript type of a schema
Functions
assert<T>(schema: Schema<T>, data: unknown): Promise<T>
Returns the validated data or throws an exception
Coverage
Project | Popularity | Example schema | Support |
---|---|---|---|
zod | z.string() |
β | |
yup | string() |
β | |
joi | Joi.string() |
β | |
superstruct | string() |
β | |
io-ts | t.string |
β | |
ow | ow.string |
β | |
typebox | Type.String() |
β | |
typia | typia.createAssert<string>() |
β | |
runtypes | String |
β | |
arktype | type('string') |
β |
Custom validations are also supported:
export function assertString(data: unknown): string {
if (typeof data !== 'string') {
throw new Error('Expected a string, got: ' + data);
}
return data;
}
await assert(assertString, '123'); // Returns '123'
await assert(assertString, 123); // Throws an exception
Acknowledgements
- Inspired by tRPCβs input & output validators