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

@vts-kit/angular-validator

v1.0.1

Published

Collection of validators to be integrated with Angular project

Readme

VTS Kit Angular Utilities (Validator)

Installation

npm install @vts-kit/angular-validator

Guideline

  • Template-driven Form

Check list of validators below and use corresponding directives and options.

Import:

import { VtsValidatorModule } from '@vts-kit/angular-validator';

@(NgModule | Component | ...)({
    imports: [VtsValidatorModule]
})

Usage:

//// Without other options (Some validators don't have extra options)
// *.html
<input ngModel url  />

//// With options
// *.html
<input number [larger]="5" [smallerOrEqual]="10" #control="ngModel">

// You can see raise errors here
{{ control.errors | json }}
  • Reactive Form

Check list of validators below and use corresponding functions and options.

Import:

import { VTSValidators } from '@vts-kit/angular-validator';

export class Component ... {
    // Use with 'validators' property of FormControl, FormGroup, FormBuilder, ...
    control = new FormBuilder().control('', {
        validators: [VTSValidators.url]
    })
}

Usage:

//// Without other options (Some validators don't have extra options)
// *.ts
control = new FormBuilder().control('', {
    validators: [VTSValidators.url]
})

// *.html
<input [formControl]="control" />

//// With options
// *.ts
control = new FormBuilder().control('', {
    validators: [
        VTSValidators.number({
          larger: 5,
          smallerOrEqual: 10
        })
    ]
})

// *.html
<input [formControl]="control" />

// You can see raise errors here
{{ control.errors | json }}

List of validators

Viettel Mail

Validate if input is a valid Viettel Email (@viettel.com.vn)

  • Directive (Template-driven Form): viettelMail
  • Function (Reactive Form): VTSValidators.viettelMail
  • Options: None
  • Raise error: viettelMail

IP Address

Validate if input is a valid IP address

  • Directive (Template-driven Form): ipAddress
  • Function (Reactive Form): VTSValidators.ipAddress
  • Options: None
  • Raise error: ipAddress

IP Address & Port

Validate if input is a valid IP address and Port (<ip>:<port>)

  • Directive (Template-driven Form): ipAddressPort
  • Function (Reactive Form): VTSValidators.ipAddressPort
  • Options: None
  • Raise error: ipAddressPort

Number

Validate if input is a valid number, number type (float, integer), larger, smaller

  • Directive (Template-driven Form): number
  • Function (Reactive Form): VTSValidators.number
  • Options and raise errors:

| No | Name | Type | Description | Raise error | | --- | ---------------- | -------------------------------------- | ------------------------------------------------------------- | --------------------- | | 1 | number | boolean | Check if input can be convert to number | number | | 2 | numberType | float or integer or any (default | Check type of number | numberType | | 3 | larger | number | Check value of input is larger than given number | numberLarger | | 4 | largerOrEqual | number | Check value of input is larger than or equal to given number | numberLargerOrEqual | | 5 | smaller | number | Check value of input is smaller than given number | numberSmaller | | 6 | smallerOrEqual | number | Check value of input is smaller than or equal to given number | numberSmallerOrEqual |

URL

Validate if input is a valid URL

  • Directive (Template-driven Form): url
  • Function (Reactive Form): VTSValidators.url
  • Options: None
  • Raise error: url