Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

validator-handler

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

validator-handler

Tiny library to validate and set custom error messages easily.

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

validator-handler

Tiny library to validate and set custom error messages easily.

Installation and usage

Install the package:

npm i validator-handler

Example

import validate, { validator, isNotValid, isValid } from 'validator-handler';

const inputs = {
    name: "Thiago Silva",
    email: "emaildfdf.com",
    password: "123a"
};

const isIncluded = (pattern) => data => pattern.test(data)

// `validator` is a third-party library with its own sets of validators that you can use;
// or create your own custom function.
const validations = {
    name: ["Please enter a name.", validator.notEmpty],
    email: [
        "Please enter an email address.", validator.notEmpty,
        "Invalid email address.", validator.isEmail
    ],
    password: [
        "Be at least 8 characters or longer.", (x) => x.length >= 8,
        "Include at least one number or symbol", isIncluded(/[0-9!@#$%¨&*_()+.]/),
        "Uppercase and lowercase letter are required.", isIncluded(/(?=[A-Z])(?=[a-z])/)
    ]
};

const results = validate(inputs, validations);
/*
OUT: { email: [ 'Invalid email address.' ],
       password: [ 'Be at least 8 characters or longer.',
                   'Uppercase and lowercase letter are required.' ] }
*/

// check if results is valid
if (isValid(results)) {
    ...
}

// check if results is not valid
if (isNotValid(results)) {
    // handling error messages
    ...
}

Details

Functions availableDescription
validate(toValidate, validations)Validate inputs and return error messages if any input invalid.
isValid(results)Check if results is valid.
isNotValid(results)Opposite of isValid function.
validatorA library of string validators and sanitizers - list of validators

Keywords

FAQs

Package last updated on 08 Jan 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc