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 🙏

© 2026 – Pkg Stats / Ryan Hefner

stampper

v1.2.1

Published

Typescript decorators-based JSON validator

Readme

TS decorators-based JSON validator.

Example

First, define the model.

class Person {
  @String({ minLength: 3})
  name: string;

  @Number({ optional: true })
  years: number;

  @List({ allowedValues: ['ES', 'EN', 'FR'], separator: ',' })
  languages: string;

  @Class({ class: Country })
  countriesVisited: Country[];
}

class Country {
  @String()
  name: string;

  @Class({ class: City })
  cities: City[];
}

class City {
  @String()
  name: string;
}

And, then, call validateJSON passing the model and the JSON value to be validated.

validateJSON(Person, {
  name: 'Name',
  years: 50,
  languages: 'ES,EN',
  countriesVisited: [
    {
      name: 'Spain',
      cities: [
        { name: 'Madrid' },
        { name: 'Valencia' },
      ]
    }
  ],
});

If an invalid JSON is provided, an error will be thrown. Example:

try {
  validateJSON(Person, {
    name: 'Name',
    years: 50,
    languages: 'ES,EN',
    countriesVisited: [
      {
        // name: 'Spain', <- This required property is removed
        cities: [
          { name: 'Madrid' },
          { name: 'Valencia' },
        ]
      }
    ],
  });
} catch (error) {
  console.error(error);
}

Will result in the following error printed out:

MissingRequiredPropertyJSONError {
  typeCode: 2,
  typeName: 'MissingRequiredProperty',
  name: 'name',
  value: undefined,
  path: [ 'countriesVisited', 'name' ],
  message: 'Missing required property'
}

Validators options

The list below contains the validators/decorators that are currently supported along with their options.

Validator | Property name | Description | Possible values | Associated errors | Required | -|---------------|--------------------------------------------|-------------------|----------------------------------------|----------- @String()| minLength | The minimum length allowed for the string. | Integer values | StringShorterThanAllowedJSONError |No |@String()| maxLength | The maximum length allowed for the string. | Integer values | StringLongerThanAllowedJSONError |No @String()| allowedValues | The list of allowed values. | Array of strings | StringIsNotInTheAllowedValuesJSONError |No @List()| separator | The string that separates the elements of the list. For example, a comma: ,. 3 | Any string | None | Yes | @List()| allowRepeatedValues | Whether values can be repeated or not. | Boolean | ListValueIsRepeated | No | @List()| allowedValues | List of the values that are allowed. All of them has to be in this array. | Array of strings | ListValueIsNotInTheAllowedValuesJSONError | No | @Number()| isInteger | Whether is integer or not. | Boolean | NumberIsNotIntegerJSONError | No | @Class()| class | The class that defines the shape of the object associated to the property. | Any class | None | Yes | *| isOptional | If true and no value (null or undefined), the validator will ignore it. | Boolean | MissingRequiredPropertyJSONError | No |`