Socket
Book a DemoInstallSign in
Socket

awesome-validator

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

awesome-validator

Awesome validator for node or browser.

unpublished
Source
npmnpm
Version
0.0.0-semantically-released
Version published
Maintainers
1
Created
Source

Awesome Validator

Awesome validator for node or browser.

NPM Version Downloads MIT License

Build Status Build status Coverage Status

Dependency Status 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.stringType().validate('foo'); //=> true

ES6

import validator from 'awesome-validator';

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

Or, import only a subset of the library:

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

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

Typescript

import { validator } from 'awesome-validator';

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

Or, import only a subset of the library:

import { StringType } from 'awesome-validator/dist/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.stringType().validate('foo'). //=> true
</script>

Validators

Keywords

awesome-validator

FAQs

Package last updated on 05 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts