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

@hippo-oss/nest-dto

v1.1.1

Published

NestJS DTO decorators.

Downloads

5,270

Readme

nest-dto

NestJS DTO decorator composition.

What Problem Does This Project Solve?

Data transfer objects (DTOs) in the NestJS ecosystem typically rely on decorators from several libraries, including:

As a result, a single DTO property often needs to be decorated several times and needs each of these decorators to be defined consistently. Over the course of a large project with many DTOs, a large amount of code will be dedicated to these definitions and small inconsistencies often creep into the definitions.

nest-dto provides a simplified set of decorators that compose over the library decorators.

An Example

A DTO for an HTTP API that generates an OpenAPI spec might need all of the following decorators for a single property:

import { ApiProperty } from '@nestjs/swagger';
import { Type } from 'class-transformer';
import { IsDefined, IsInt } from 'class-validator';

export class ExampleDTO {

    @Type(() => Number)
    @IsDefined()
    @IsInt()
    @ApiProperty({
        description: 'An example value',
        type: integer,
    })
    public value!: number;
}

With nest-dto, this declaration becomes:

import { IsInteger } from '@hippo-oss/nest-dto/openapi';


export class ExampleDTO {

    @IsInteger({
        description: 'An example value',
    })
    public value!: number;
}

Flavors

Different combinations of the library decorators produce different behaviors. nest-dto defines collections of foundational decorators (e.g. IsString or IsNumber) in "flavors" that use specific combination of these libraries.

| Flavor | Description | | --------- | -------------------------------------------------------------------------------- | | strict | Integrates class-transformer and class-validator and always uses @Expose() | | openapi | Integrates class-transformer, class-validator, and @nestjs/swagger |

Decorators

The following decorators are supported:

| Decorator | Description | | -------------- | ----------------------------------- | | IsArray | Declares an array of a nested type. | | IsBoolean | Declares a boolean value. | | IsDate | Declares a Date value. | | IsDateString | Declares an ISO 8601 date string. | | IsEnum | Declares an enumerated value. | | IsInteger | Declares an integer number. | | IsNested | Declares a nested object type. | | IsNumber | Declares a floating point number. | | IsString | Declares a string. | | IsUUID | Declares a UUID string. |

Decorator Options

Decorators may be passed various options, depending on their type.

All options are optional expect where indicated.

| Option | Decorator | Description | | ----------------- | -------------- | --------------------------------------------------- | | description | all | Description of the field; exposed in OpenAPI. | | expose | all | Enables alternate name to be set for the field. | | isArray | all | Designates an array of values. | | name | all | Alternate name of the field; exposed in OpenAPI. | | nullable | all | Whether the field can be set to null. | | optional | all | Whether the field be set to undefined or omitted. | | deprecated | all | Whether the field appears as deprecated | | ----------------- | -------------- | --------------------------------------------------- | | type (required) | IsArray | The type of the array's items. | | maxItems | IsArray | The maximum number of array items. | | minItems | IsArray | The minimum number of array items. | | ----------------- | -------------- | --------------------------------------------------- | | format | IsDate | The OpenaPI date format; defaults to date-time. | | ----------------- | -------------- | --------------------------------------------------- | | format | IsDateString | The OpenAPI date format; defaults to date. | | ----------------- | -------------- | --------------------------------------------------- | | enum (required) | IsEnum | The enum type. | | enumName | IsEnum | The enum name; required to correctly export OpenAPI | | ----------------- | -------------- | --------------------------------------------------- | | maxValue | IsInteger | The maximum value of the field. | | minValue | IsInteger | The minimum value of the field. | | ----------------- | -------------- | --------------------------------------------------- | | type (required) | IsNested | The nested type. | | ----------------- | -------------- | --------------------------------------------------- | | maxValue | IsNumber | The maximum value of the field. | | minValue | IsNumber | The minimum value of the field. | | ----------------- | -------------- | --------------------------------------------------- | | maxLength | IsString | The maximum length of the string. | | minLength | IsString | The minimum length of the string. | | pattern | IsString | A regex pattern for validating the string. | | ----------------- | -------------- | --------------------------------------------------- | | version | IsUUID | The type of UUID. |

Arrays

The easiest (and preferred) way to define arrays is to add the isArray argument to another decorator:

class Example {
   @IsString({
       isArray: true,
   })
   values!: string[];
}

The isArray option may be supplied as either the literal true or as ArraySizeOptions:

class Example {
   @IsString({
       isArray: {
           maxSize: 30,
           minSize: 0,
       },
   })
   values!: string[];
}

Note that while the IsArray decorator is also supported, it is less well-suited for defining arrays of value types using a consistent interface and may be deprecated in the future.

Enums

Enumerated types work pretty much as expected:

enum Color {
  Red = 'Red',
  Blue = 'Blue',
  Green = 'Green',
}

class Example {
   @IsEnum({
      enum: Color,
      enumName: 'Color',
   })
   color!: Color;
}

The enumName value is optional, but if omitted causes OpenAPI generation to treat the enum as a value type rather than as $ref to a shared type. This choice may matters when generating code from an OpenAPI spec because most code generators will produce different types for every enum value, even if they share the same enumerated values. Defining an enumName (and therefore a $ref declaration) ensures that generated code sees each use of the same enum as the same type.

Nested Types

Decorator values that use another object type should be decorated with IsNested:

class Child {
    @IsString()
    value!: string;
}

class Parent {
     @IsNested({
         type: Child,
     })
     child!: Child;
}

Every child type is expected to define at least one decorator field. Failure to do so may result in errors from class-transformer.