js-object-validation

2.0.1 • Public • Published

Simple JS validation for forms

This is basically aimed to validate forms in reactjs.

installation

using npm

npm i js-object-validation

or

npm install js-object-validation

using yarn

yarn add js-object-validation

Benifits

Pure JS

Customizable messages

No dependencies

Easy to use.

Usage

import Validator from "js-object-validation";

try{
  const objectToValidate = {
    email: "sbamniya23",
    password: "12"
  }
  const validations = {
    email: {
      email: true,
    },
    password: {
      minlength: 8,
    }
  }
  const messages = {
    email: {
      email: "Email should be valid email",
    },
    password: {
      minlength: "Password should be at least 8 charater long",
    }
  } // this is optional

  const {isValid, errors} = Validator(objectToValidate, validations, messages);
  if(isValid){
    <!-- object has passed all validations -->
  } else {
    <!-- object has some error -->
    console.log(errors)
  }
} catch(error) {
  console.log(error)
}

Validation types Options

Required

required

Valid email

email

Valid number

numeric

Max number

maxnumber

Min number

minnumbers

Valid Alphanumeric

alphanumeric

Valid Alphabetic string

alpha

Maxlength

maxlength

Min lenght

minlength

Compare two fields

equal

Strong Password

password

Username

username

Valid URL

url

Update

Fixed Issue #1

Added Validations for Password and Username

Update 2

Added typescript defination and removed ENUM for clear management

Want to contribute/update ?

If you have any new update/idea feel free to contact.

sbamniya23@gmail.com

Contributors

@sbamniya

Package Sidebar

Install

npm i js-object-validation

Weekly Downloads

5

Version

2.0.1

License

ISC

Unpacked Size

12.3 kB

Total Files

4

Last publish

Collaborators

  • sbamniya23