2.3.0 • Published 4 years ago

schema-types v2.3.0

Weekly downloads
8
License
MIT
Repository
-
Last release
4 years ago

schema-types npm version Build Status codecov

This library provides runtime and compile-type type schema definition and validation.

Features

  • Zero dependencies!
  • High level of developer ergonomics
  • Full modern TypeScript support
  • IntelliSense support

Installation

$ yarn add schema-types

Example

import * as T from 'schema-types'

// NOTE: documentation comments on the properties will appear in IntelliSense
const userType = T.object({
  /** The user's name */
  name: T.string(),

  /** The user's age */
  age: T.number(),

  /** Is the user account locked? */
  locked: T.optional(T.boolean()),
})

// Create a compile-time type alias for the schema type
type User = T.TypeOf<typeof userType>

// Use the compile-time type
export const user: User = {
  name: 'Alice',
  age: 32,
}

// Unknown data from user input, an API response, etc
const data: unknown = ...

// Return any validation issues
T.validate(userType, data) //=> [] (no issues)

T.validate(userType, {name: 'Alice', age: '32'}) //=> [{type: 'INVALID_TYPE', message: 'Invalid type, expected number, got string 32', path: '/age'}]

// Use a type-guard to refine the type
if (T.is(userType, data)) {
  // data is typed as `User`
}

// T.assert() throws an error if the data fails to validate
try {
  T.assert(userType, data)
  // data is typed as `User` (using TypeScript's `asserts` return type)
} catch (error) {
  console.log(error.issues) // logs the issues causing validation failure
}

// Generate TypeScript code for codegen
T.code(userType) //=> {"name": string; "age": number; "locked"?: (boolean | undefined)}

Type Compatibility

Types:

TypeScriptschema-types
anyT.any()
ArrayT.array()
bigintT.bigint()
booleanT.boolean()
FunctionT.function()
nullT.null()
numberT.number()
objectT.object()
Record<string, T>T.map()
stringT.string()
undefinedT.undefined()
unknownT.unknown()
voidT.void()
LiteralsT.literal()
Literal UnionT.literalUnion()
TupleT.tuple()
UnionT.union()
IntersectionT.intersection()

Modifiers:

TypeScriptschema-types
OptionalT.optional()
Read-onlyT.readonly()

Not implemented:

TypeScriptschema-types
EnumsNot Implemented
GenericsNot Implemented

Helpers

T.TypeOf<T>

Takes a type schema and infers the TypeScript type for that schema.

T.assert(schema, value)

Checks to see if the value matches the supplied schema, and if not, throws an error.

T.is(schema, value)

Returns a boolean indicating if the value matches the supplied schema.

T.validate(schema, value)

Returns an array of validation issues, if any.

T.code(schema)

Returns a string containing the TypeScript code representation of the schema, useful for code generation.

Credits

This library was inspired by several other TypeScript runtime type libraries:

License

MIT license, see LICENSE

2.3.0

4 years ago

2.2.0

4 years ago

2.1.4

4 years ago

2.1.3

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago