Package Exports
- io-ts
- io-ts/lib
- io-ts/lib/reporters/default
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (io-ts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
The idea
A value of type Type<T>
(called "runtime type") is the runtime representation of the static type T
:
class Type<T> {
constructor(public readonly name: string, public readonly validate: Validate<T>) {}
is(x: any): x is T
}
where Validate<T>
is a specific validation function for T
type Validate<T> = (value: any, context: Context) => Either<Array<ValidationError>, T>;
Note. The Either
type is defined in fp-ts, a library containing implementations of common algebraic types in TypeScript.
Example
A runtime type representing string
can be defined as
import * as t from 'io-ts'
const string = new t.Type<string>(
'string',
(value, context) => typeof value === 'string' ? t.success(v) : t.failure<string>(v, c)
)
A runtime type can be used to validate an object in memory (for example an API payload)
const Person = t.interface({
name: t.string,
age: t.number
})
// ok
t.validate(JSON.parse('{"name":"Giulio","age":43}'), Person) // => Right({name: "Giulio", age: 43})
// ko
t.validate(JSON.parse('{"name":"Giulio"}'), Person) // => Left([...])
Error reporters
A reporter implements the following interface
interface Reporter<A> {
report: (validation: Validation<any>) => A;
}
This package exports two default reporters
PathReporter: Reporter<Array<string>>
ThrowReporter: Reporter<void>
Example
import { PathReporter, ThrowReporter } from 'io-ts/lib/reporters/default'
const validation = t.validate({"name":"Giulio"}, Person)
console.log(PathReporter.report(validation))
// => ['Invalid value undefined supplied to : { name: string, age: number }/age: number']
ThrowReporter.report(validation)
// => throws 'Invalid value undefined supplied to : { name: string, age: number }/age: number'
Community error reporters
TypeScript integration
Runtime types can be inspected
This library uses TypeScript extensively. Its API is defined in a way which automatically infers types for produced values
Note that the type annotation isn't needed, TypeScript infers the type automatically based on a schema.
Static types can be extracted from runtime types with the TypeOf
operator
type IPerson = t.TypeOf<typeof Person>
// same as
type IPerson = {
name: string,
age: number
}
Note that recursive types can't be inferred
// helper type
type ICategory = {
name: string,
categories: Array<ICategory>
}
const Category = t.recursion<ICategory>('Category', self => t.object({
name: t.string,
categories: t.array(self)
}))
Implemented types / combinators
import * as t from 'io-ts'
Type | TypeScript annotation syntax | Runtime type / combinator |
---|---|---|
null | null |
t.null |
undefined | undefined |
t.undefined |
string | string |
t.string |
number | number |
t.number |
boolean | boolean |
t.boolean |
any | any |
t.any |
never | never |
t.never |
integer | ✘ | t.Integer |
generic array | Array<any> |
t.Array |
generic dictionary | { [key: string]: any } |
t.Dictionary |
function | Function |
t.Function |
arrays | Array<A> |
t.array(A) |
literal | 's' |
t.literal('s') |
maybe | `A | null` |
partial | Partial<{ name: string }> |
t.partial({ name: t.string }) |
readonly | Readonly<{ name: string }> |
t.readonly({ name: t.string }) |
readonly array | ReadonlyArray<number> |
t.readonlyArray(t.number) |
dictionaries | { [key: A]: B } |
t.dictionary(A, B) |
refinement | ✘ | t.refinement(A, predicate) |
interface | { name: string } |
t.interface({ name: t.string }) |
tuple | [A, B] |
t.tuple([A, B]) |
union | A | B |
t.union([A, B]) |
intersection | A & B |
t.intersection([A, B]) |
keyof | keyof M |
t.keyof(M) |
recursive types | t.recursion(name, definition) |
|
map | ✘ | t.map(f, type) |
prism | ✘ | t.prism(type, getOption) |
Mixing required and optional props
Note. You can mix required and optional props using an intersection
const A = t.interface({
foo: t.string
})
const B = t.partial({
bar: t.number
})
const C = t.intersection([A, B])
type CT = t.TypeOf<typeof C>
// same as
type CT = {
foo: string,
bar?: number
}
Custom types
You can define your own types. Let's see an example
import * as t from 'io-ts'
// returns a Date from an ISO string
const DateFromString = new t.Type<Date>(
'DateFromString',
(v, c) => t.string.validate(v, c).chain(s => {
const d = new Date(s)
return isNaN(d.getTime()) ? t.failure<Date>(s, c) : t.success(d)
})
)
const s = new Date(1973, 10, 30).toISOString()
t.validate(s, DateFromString)
// => Right(Date(..))
t.validate('foo', DateFromString)
// => Left( 'Invalid value "foo" supplied to : DateFromString' )
Note that you can deserializing while validating.
Custom combinators
You can define your own combinators. Let's see some examples
The maybe
combinator
export function maybe<RT extends t.Any>(type: RT, name?: string): t.UnionType<[RT, typeof t.null], t.TypeOf<RT> | null> {
return t.union([type, t.null], name)
}
The brand
combinator
The problem
const payload = {
celsius: 100,
fahrenheit: 100
}
const Payload = t.interface({
celsius: t.number,
fahrenheit: t.number
})
// x can be anything
function naiveConvertFtoC(x: number): number {
return (x - 32) / 1.8;
}
// typo: celsius instead of fahrenheit
console.log(t.validate(payload, Payload).map(x => naiveConvertFtoC(x.celsius))) // NO error :(
Solution (branded types)
export function brand<T, B extends string>(type: t.Type<T>, brand: B): t.Type<T & { readonly __brand: B }> {
return type as any
}
const Fahrenheit = brand(t.number, 'Fahrenheit')
const Celsius = brand(t.number, 'Celsius')
type CelsiusT = t.TypeOf<typeof Celsius>
type FahrenheitT = t.TypeOf<typeof Fahrenheit>
const Payload2 = t.interface({
celsius: Celsius,
fahrenheit: Fahrenheit
})
// narrowed types
function convertFtoC(fahrenheit: FahrenheitT): CelsiusT {
return (fahrenheit - 32) / 1.8 as CelsiusT;
}
console.log(t.validate(payload, Payload2).map(x => convertFtoC(x.celsius))) // error: Type '"Celsius"' is not assignable to type '"Fahrenheit"'
console.log(t.validate(payload, Payload2).map(x => convertFtoC(x.fahrenheit))) // ok
Recipes
Is there a way to turn the checks off in production code?
No, however you can define your own logic for that (if you really trust the input)
import * as t from 'io-ts'
import { pathReporterFailure } from 'io-ts/lib/reporters/default'
function unsafeValidate<T>(value: any, type: t.Type<T>): T {
if (process.env.NODE_ENV !== 'production') {
return t.validate(value, type)
.fold(
errors => { throw new Error(pathReporterFailure(errors).join('\n')) },
x => x
)
}
return value as T
}
Known issues
Due to an upstream bug, VS Code might display weird types for nested interfaces
const NestedInterface = t.interface({
foo: t.interface({
bar: t.string
})
});
type NestedInterfaceType = t.TypeOf<typeof NestedInterface>;
/*
Hover on NestedInterfaceType will display
type NestedInterfaceType = {
foo: t.InterfaceOf<{
bar: t.Type<string>;
}>;
}
instead of
type NestedInterfaceType = {
foo: {
bar: string;
};
}
*/