npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ndinatale/ts-type-validation

v0.4.9

Published

Use TypeScript decorators to validate types like all primitives, enums, objects, literals, unions, tuples, intersections etc.

Downloads

1

Readme

Type validation with TypeScript's decorators

Use TypeScript's decorators combined with emitted metadata of type definitions to validate...

  • the type of the assigned value of class properties
  • the type of passed arguments to functions
  • the type of passed arguments to the constructor of an object
  • definitions
  • ranges
  • lengths and sizes

...and much more to come.


Table of Contents


Installation

Run npm install @ndinatale/ts-type-validation

Since decorators are still experimental, you must enable the experimentalDecorators as well as emitDecoratorMetadata compiler options either on the command line or in your tsconfig.json:

Command Line:

tsc --target ES5 --experimentalDecorators --emitDecoratorMetadata

tsconfig.json:

{
    "compilerOptions": {
        "target": "esnext",
        "experimentalDecorators": true,
        "`emitDecoratorMetadata`": true
    }
}

Features

Type validations

With the use of reflect-metadata and the compiler option emitDecoratorMetadata, it's possible to validate the types of decorated properties, arguments and function return types by the defined types at runtime.

With the decorator @Validate(), it's possible to validate

  • boolean
  • function
  • number
  • string
  • symbol
  • object

just by the type definition provided by TypeScript.

Additionally, with the decorators @IsEnumOf(), @IsLiteralOf(), @IsTupleOf(), and (soon) @IsIntersectionOf() there's the opportunity to validate upon these higher order types, although the type definition won't (and can't) be considered.

Validation upon "not null"

By default, null and undefined are valid assignments to all decorator functions. Thus they accept an options parameter to set the notNull flag. If a target should not validate upon type, but only check for not null, there is a @NotNull() decorator, which only validates upon not null and not undefined.


Usage

Simply decorate a property, a function argument or a constructor argument with the desired validation decorator. For the types boolean, function, number, string, symbol and object, the type definition will be read and validated accordingly. For TypeScript's higher order types enums, literals, tuples and intersections, the passed values to the decorator function will be the base of the validation, which means the type definitions will be ignored.

If a validation fails, all validation decorators throw a TypeError by default. This can be changed by passing an options object in which it's possible to define an error callback which will be executed instead of the TypeError.

The function which holds the parameter decorators needs to be decorated with @RegisterParams() in order to validate the params at all.

Type validations

To validate method or constructor arguments, you need to register them with @RegisterConstructorParams as class decorator for constructor arguments and @RegisterParams as method decorator for method arguments.

import { RegisterConstructorParams, RegisterParams, Validate } from '@ndinatale/ts-type-validation'

@RegisterConstructorParams()
class Foo {
  
  constructor(@Validate() foo: boolean) {
    // ...
  }
  
  @RegisterParams()
  testMethod(@Validate() foo: boolean): void {
    // ...
  }
}

Boolean

Property Decorator
import { Validate } from '@ndinatale/ts-type-validation'

class Foo {
  @Validate()
  bar: boolean;

  @Validate({errorCb: () => console.error('some custom function')})
  foobar: boolean;

  @Validate({notNull: true})
  barfoo: boolean;
}
Parameter Decorator
import { RegisterParams, Validate } from '@ndinatale/ts-type-validation'

class Foo {

  @RegisterParams()
  testMethod(@Validate() foo: boolean,
             @Validate({notNull: true}) foobar: boolean,
             @Validate({errorCb: () => console.error('some custom function')}) bar: boolean): void {
    // ...
  }
}

Function

Property Decorator
import { Validate } from '@ndinatale/ts-type-validation'

class Foo {
  @Validate()
  bar: Function;

  @Validate({notNull: true})
  barfoo: Function;

  @Validate({errorCb: () => console.error('some custom function')})
  foobar: Function;
}
Parameter Decorator
import { RegisterParams, Validate } from '@ndinatale/ts-type-validation'

class Foo {

  @RegisterParams()
  testMethod(@Validate() foo: () => void,
             @Validate({notNull: true}) barfoo: () => void,
             @Validate({errorCb: () => console.error('some custom function')}) bar: () => void): void {
    // ...
  }
}

Number

Property Decorator
import { Validate } from '@ndinatale/ts-type-validation'

class Foo {
  @Validate()
  bar: number;

  @Validate({notNull: true})
  barfoo: number;

  @Validate({errorCb: () => console.error('some custom function')})
  foobar: number;
}
Parameter Decorator
import { RegisterParams, Validate } from '@ndinatale/ts-type-validation'

class Foo {

  @RegisterParams()
  testMethod(@Validate() foo: number,
             @Validate({notNull: true}) barfoo: number,
             @Validate({errorCb: () => console.error('some custom function')}) bar: number): void {
    // ...
  }
}

String

Property Decorator
import { Validate } from '@ndinatale/ts-type-validation'

class Foo {
  @Validate()
  bar: string;

  @Validate({notNull: true})
  barfoo: string;

  @Validate({errorCb: () => console.error('some custom function')})
  foobar: string;
}
Parameter Decorator
import { RegisterParams, Validate } from '@ndinatale/ts-type-validation'

class Foo {

  @RegisterParams()
  testMethod(@Validate() foo: string,
             @Validate() barfoo: string,
             @Validate({errorCb: () => console.error('some custom function')}) bar: string): void {
    // ...
  }
}

Symbol

Property Decorator
import { Validate } from '@ndinatale/ts-type-validation'

class Foo {
  @Validate()
  bar: symbol;

  @Validate({notNull: true})
  barfoo: symbol;

  @Validate({errorCb: () => console.error('some custom function')})
  foobar: symbol;
}
Parameter Decorator
import { RegisterParams, Validate } from '@ndinatale/ts-type-validation'

class Foo {

  @RegisterParams()
  testMethod(@Validate() foo: symbol,
             @Validate({errorCb: () => console.error('some custom function')}) bar: symbol): void {
    // ...
  }
}

Object

Property Decorator
import { Validate } from '@ndinatale/ts-type-validation'

class Bar {
  
}

class Foo {
  @Validate()
  bar: Bar;

  @Validate({notNull: true})
  barfoo: Bar;

  @Validate({errorCb: () => console.error('some custom function')})
  foobar: Bar;
}
Parameter Decorator
import { RegisterParams, Validate } from '@ndinatale/ts-type-validation'

class Bar {
  
}

class Foo {

  @RegisterParams()
  testMethod(@Validate() foo: Bar,
             @Validate({errorCb: () => console.error('some custom function')}) bar: Bar): void {
    // ...
  }
}

Enum

The enum to make the comparison on needs to be passed to the decorator.

Property Decorator
import { IsEnumOf } from '@ndinatale/ts-type-validation'

enum Bar {
  Beer,
  Vodka,
  Rum
}

class Foo {
  @IsEnumOf(Bar)
  bar: Bar;

  @IsEnumOf(Bar, {notNull: true})
  barfoo: Bar;

  @IsEnumOf(Bar, {errorCb: () => console.error('some custom function')})
  foobar: Bar;
}
Parameter Decorator

enum Bar {
  Beer,
  Vodka,
  Rum
}

import { RegisterParams, IsEnumOf } from '@ndinatale/ts-type-validation'

class Foo {

  @RegisterParams()
  testMethod(@IsEnumOf(Bar) foo: Bar,
             @IsEnumOf(Bar, {errorCb: () => console.error('some custom function')}) bar: Bar): void {
    // ...
  }
}

Literals

The literals to be accepted need to be passed as an array to the decorator.

Property Decorator
import { IsLiteralOf } from '@ndinatale/ts-type-validation'

class Foo {
  @IsLiteralOf(['foo', 'bar'])
  bar: 'foo' | 'bar';

  @IsLiteralOf(['foo', 'bar'], {errorCb: () => console.error('some custom function')})
  foobar: 'foo' | 'bar';
  
  @IsLiteralOf([1, 2])
  barfoo: 1 | 2;

  @IsLiteralOf([1, 2], {notNull: true})
  foobarfoo: 1 | 2;

  @IsLiteralOf([20, 30], {errorCb: () => console.error('some custom function')})
  foobar: 20 | 30;
}
Parameter Decorator

enum Bar {
  Beer,
  Vodka,
  Rum
}

import { RegisterParams, IsLiteralOf } from '@ndinatale/ts-type-validation'

class Foo {

  @RegisterParams()
  testMethod(@IsLiteralOf(['foo', 'bar']) foo: 'foo' | 'bar',
             @IsLiteralOf([20, 30]) foo: 20 | 30,
             @IsLiteralOf([1, 2]) foo: 1 | 2,
             @IsLiteralOf(['foo', 'bar'], {errorCb: () => console.error('some custom function')}) bar: 'foo' | 'bar'): void {
    // ...
  }
}

Tuple

The tuple types need to be passed as an array to the decorator. (strings for primitive types)

Property Decorator
import { IsTupleOf } from '@ndinatale/ts-type-validation'

class Bar {
}

class Foo {
  @IsTupleOf(['string', 'number'])
  bar: [string, number];

  @IsTupleOf(['number', 'string'], {errorCb: () => console.error('some custom function')})
  foobar: [number, string];

  @IsTupleOf(['boolean', Object])
  barfoo: [boolean, Object];

  @IsTupleOf(['boolean', Object], {notNull: true})
  foobarfoo: [boolean, Object];

  @IsTupleOf([Bar, 'symbol'])
  foo: [Bar, symbol];
}
Parameter Decorator
import { RegisterParams, IsTupleOf } from '@ndinatale/ts-type-validation'

class Bar {
}

class Foo {

  @RegisterParams()
  testMethod(@IsTupleOf(['string', 'number']) bar: [string, number],
             @IsTupleOf(['number', 'string'], {errorCb: () => console.error('some custom function')}) foobar: [number, string],
             @IsTupleOf(['boolean', Object]) barfoo: [boolean, Object],
             @IsTupleOf([Bar, 'symbol']) foo: [Bar, symbol]): void {
    // ...
  }
}

Union

The union types need to be passed as an array to the decorator. (strings for primitive types)

Property Decorator
import { IsUnionOf } from '@ndinatale/ts-type-validation'

class Bar {
}

class Foo {
  @IsUnionOf(['string', 'number'])
  bar: string | number;

  @IsUnionOf(['number', 'string'], {errorCb: () => console.error('some custom function')})
  foobar: number | string;

  @IsUnionOf(['boolean', Object])
  barfoo: boolean | Object;

  @IsUnionOf(['boolean', Object], {notNull: true})
  foobarfoo: boolean | Object;

  @IsUnionOf([Bar, 'symbol'])
  foo: Bar | symbol;
}
Parameter Decorator
import { RegisterParams, IsUnionOf } from '@ndinatale/ts-type-validation'

class Bar {
}

class Foo {

  @RegisterParams()
  testMethod(@IsUnionOf(['string', 'number']) bar: [string, number],
             @IsUnionOf(['number', 'string'], {errorCb: () => console.error('some custom function')}) foobar: [number, string],
             @IsUnionOf(['boolean', Object]) barfoo: [boolean, Object],
             @IsUnionOf([Bar, 'symbol']) foo: [Bar, symbol]): void {
    // ...
  }
}

Validation upon not null

Use the @NotNull() decorator to only validate the assigned value upon null or undefined.

import { NotNull, RegisterParams } from '@ndinatale/ts-type-validation'

class Bar {
}

class Foo {

  @NotNull()
  foo: string;

  @NotNull(() => console.error('some custom function')) foobar: [number, string],
  bar: Bar;
  
  @NotNull()
  foobar: number;

  @RegisterParams()
  testMethod(@NotNull() foo: string,
             @NotNull(() => console.error('some custom function')) bar: Bar,
             @NotNull() foobar: number): void {
    // ...
  }
}

Planned features

Ordered by priority:

  • Validation on constructor functions and their params.
  • @Range() to validate the range of a number property.
  • @Length() to validate the length of an Array or string property.
  • @IsIntersectionOf() to validate on intersections.
  • and many more.

Contributing

Steps to contribute will be added soon.


License

License