Skip to content

Repository files navigation

@stackup/validate

BuildSizeVersionLicense

A functional schema validation library.

  • Lightweight - My data validation library shouldn't be bigger than React.
  • Tree-shakeable - I don't want to take a hit for functionality that I'm not using.
  • Composable - I want to validate my data with tiny, single-purpose functions.
  • Type-safe - I want my validations to enforce my TypeScript types.

Table of Contents

Example

import{schema,assert,isString,isBlank,isNumber}from"@stackup/validate";constuserSchema=schema({name: assert(isString).then(refute(isBlank,"Can't be blank")),age: assert(isNumber).then(assert(age=>age>=18,"Must be 18 or older"))});constresult=awaituserSchema.validate(data);if(result.valid){console.log(result.value);}else{console.log(result.errors);}

Installation

Install the package from NPM:

$ yarn add @stackup/validate

Operators

An operator is a function that returns a new Validator. You can chain together multiple operators with then:

assert(isString).then(refute(isBlank)).then(map(value=>value.trim())).validate("hello!").then(result=>{if(result.valid){console.log(result.value);}else{console.log(result.errors);}});

schema(shape)

Describes an object's properties.

schema({name: assert(isString),age: assert(isNumber)});

assert(predicate, message?, path?)

Produces an error if a condition is not met.

assert(isString,"must be a string");

refute(predicate, message?, path?)

Produces an error if a condition is met.

refute(isBlank,"can't be blank");

map(transform)

Transforms the current value to a new value.

map(value=>value.trim());

optional(validator)

Runs the given validator unless the value is undefined.

optional(assert(isString));

nullable(validator)

Runs the given validator unless the value is null.

nullable(assert(isString));

maybe(validator)

Runs the given validator unless the value is either null or undefined.

maybe(assert(isString));

when(predicate, validator)

Runs the given validator when the predicate is truthy.

when(isString,refute(isBlank));

each(validator)

Runs the given validator against each item in an array.

each(assert(isString));

defaultTo(value)

Provide a default value to replace null or undefined values.

defaultTo(0);

pass()

Skip validation for this field.

schema({name: pass(),age: pass()});

Validator

A Validator represents a step in the validation sequence. You probably won't create a validator directly, but you certainly could:

constblankValidator=newValidator(input=>{if(isBlank(value)){returnValidator.reject("can't be blank");}else{returnValidator.resolve(value);}});

validate(input)

Runs the validator against user input. This function returns a Promise.

constresult=awaitvalidator.validate(data);if(result.valid){console.log(result.value);}else{console.log(result.errors);}

then(validator)

Adds another validator to the current validation chain. This method returns an entirely new validator.

validator.then(refute(isBlank));

SchemaValidator

extend(shape)

Add or overwrite the fields that a schema validates.

constuser=schema({name: assert(isString)});constadmin=user.extend({role: assert(role=>role==="admin")});

Predicates

A predicate is a function that takes a value and returns true or false.

constisBlank=value=>{returnvalue.trim()==="";};

This library only includes the most essential predicate functions, because you can find thousands of predicate functions in the NPM ecosystem. Here are a few examples:

isString(value)

Checks if the value is a string.

isNumber(value)

Checks if the value is a number.

isObject(value)

Checks if the value is an object.

isBoolean(value)

Checks if the value is boolean.

isUndefined(value)

Checks if the value is undefined.

isNull(value)

Checks if the value is null.

isNil(value)

Checks if the value is null or undefined.

isBlank(value)

Checks if a string is blank.

TypeScript

Type Narrowing

This library assumes that all input is unknown by default. That means, you'll need to narrow types before calling certain functions.

Here's an example that would cause a compile-time error:

schema({// Error: 'unknown' is not assignable to type 'string'name: refute(isBlank)});

This is by design. To address this, you'll need to narrow types by passing a type guard to assert:

schema({name: assert(isString).then(refute(isBlank))});

This library includes a few type guards out of the box, but you can also write your own:

constisStringOrNumber=(value: unknown): value is string|number=>{returntypeofvalue==="string"||typeofvalue==="number";};

Enforce an existing type with a Validator

You can ensure that your validators enforce your types.

interfaceUser{name: string;}// Error: Property 'name' is missing in type '{}'schema<unknown,User>({});// Error: 'number' is not assignable to type 'string'schema<unknown,User>({name: assert(isNumber)});

Extract type information from a Validator

You can also generate new types from validators that you've defined:

constuserSchema=schema({name: assert(isString),age: assert(isNumber);});typeUser=InferType<typeofuserSchema>;

About

A functional schema validation library

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages