awesome-validator

Awesome validator for node or browser.

Usage no npm install needed!

<script type="module">
  import awesomeValidator from 'https://cdn.skypack.dev/awesome-validator';
</script>

README

Awesome Validator

Awesome validator for node or browser.

NPM Version Downloads MIT License

Build Status Build status Coverage Status

Code Climate Test Coverage Issue Count

Dependencies Status devDependencies Status peerDependencies Status

Semantic Release Commitizen friendly Average time to resolve an issue Percentage of issues still open Gitter

NPM

Server-side

Install the library with npm install --save awesome-validator

var validator = require('awesome-validator').validator;

validator.notEmpty().stringType().validate('foo'); //=> true

ES6

import validator from 'awesome-validator';

validator.notEmpty().stringType().validate('foo'); //=> true

Or, import only a subset of the library:

import StringType from 'awesome-validator/lib/rules/string-type';

new StringType().validate('foo'); //=> true

Typescript

import { validator } from 'awesome-validator';

validator.notEmpty().stringType().validate('foo'); //=> true

Or, import only a subset of the library:

import { StringType } from 'awesome-validator/lib/rules/string-type';

new StringType().validate('foo'); //=> true

Client-side usage

The library can be loaded either as a standalone script, or through an AMD-compatible loader

<script type="text/javascript" src="awesome-validator.min.js"></script>
<script type="text/javascript">
    validator.notEmpty().stringType().validate('foo'); //=> true
</script>

Validators