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 🙏

© 2024 – Pkg Stats / Ryan Hefner

multiform-validator

v2.0.3

Published

Javascript library made to validate, several form fields, such as: email, phone, password, cpf etc.

Downloads

824

Readme

[!NOTE] I accept help to make the version of the other programming languages.

Multiform-validator

npm version License: MIT npm downloads

This npm package provides JavaScript functions to validate various forms fields.

Documentation: https://gabriel-logan.github.io/multiform-validator

Feel free to find bugs and report them to me. Your feedback is highly appreciated. Hugs from Gabriel Logan!

CDNs

jsDelivr:

https://cdn.jsdelivr.net/npm/[email protected]/dist/bundle.min.js
<scritp src="https://cdn.jsdelivr.net/npm/[email protected]/dist/bundle.min.js"></script>

unpkg:

https://unpkg.com/[email protected]/dist/bundle.js
<scritp src="https://unpkg.com/[email protected]/dist/bundle.js"></script>

Installation

npm install multiform-validator

or

yarn add multiform-validator

Data Validator

This package contains various modules for validating different types of data. Below are the available validation modules:

Available Validation Modules

  • cnpjValidator: CNPJ validation.
  • cpfValidator: CPF validation.
  • getOnlyEmail: Extracts only the email or emails address from a string.
  • identifyFlagCard: Identifies the flag of a credit card.
  • isAscii: Checks if the string contains only ASCII characters.
  • isBase64: Checks if the string is a valid Base64 encoding.
  • isCEP: CEP validation (Brazilian postal code).
  • isCreditCardValid: Credit card validation.
  • isDate: Date format validation.
  • isDecimal: Checks if the number is a decimal.
  • isEmail: Email address validation format.
  • isEmpty: Checks if the string is empty.
  • isMACAddress: MAC address validation.
  • isMD5: Checks if the string is a valid MD5 hash.
  • isNumber: Checks if the value is a number.
  • isPort: Port number validation.
  • isPostalCode: Postal code validation.
  • isTime: Time format validation.
  • isValidAudio: Audio file validation.
  • isValidImage: Image file validation.
  • isValidPdf: Pdf file validation.
  • isValidTxt: Txt file validation.
  • isValidVideo: Video file validation.
  • passwordStrengthTester: Password strength test.
  • validateBRPhoneNumber: Brazilian phone number validation.
  • validateEmail: Email address full validation.
  • validateName: Name validation.
  • validatePassword: Password validation.
  • validatePassportNumber: Passport number validation.
  • validatePhoneNumber: Phone number validation.
  • validateSurname: Surname validation.
  • validateTextarea: Textarea validation.
  • validateUsername: Username validation.
  • validateUSPhoneNumber: US phone number validation.

You can use it in React Native, Angular, any javascript framework or any javascript or typescript code.

Example using Reactjs:

Example using Reactjs Showing error options Showing error in browser

For better information, read the documentation


const validator = require('multiform-validator');
// or
import validator from 'multiform-validator';

or

// Attention, FUNCTION_NAME is not a valid function name! It is just an example of how to import the functions.

const { FUNCTION_NAME } = require('multiform-validator');
// or
import { FUNCTION_NAME } from 'multiform-validator';

const validator = require('multiform-validator');
// or
import validator from 'multiform-validator';
// then
validator.FUNCTION_NAME
// OBS: 'if the function is called validate, the return will be an object and not boolean'
// When return object boolean
validator.FUNCTION_NAME = true or false
// When return object
validator.FUNCTION_NAME = object = { isValid: true or false, errorMsg: 'stringError' }
validator.FUNCTION_NAME.isValid = true or false
validator.FUNCTION_NAME.errorMsg = 'ErrorMsg' // You can customize errors
/**
	* There are other returns in some functions, with strings etc, stay tuned
*/

Documentation

https://gabriel-logan.github.io/multiform-validator


const { validateEmail } = require('multiform-validator');
// or
import { validateEmail } from 'multiform-validator';

// It has many more validations, you can read the documentation or
// do several tests to learn how to use the library in the best possible way.

// Two last parameters are optional
console.log(validateEmail('[email protected]', { maxLength: 30, country: 'br' }).isValid); // returns false
console.log(validateEmail('[email protected]', { maxLength: 30, country: 'br' }).isValid); // returns true
console.log(validateEmail('[email protected]', { maxLength: 30 }).isValid); // returns true

// All examples return default messages, below is an example setting your own messages

// If you want to use a default parameter, use null.

const validationResult = validateEmail('[email protected]', { maxLength: 30 });

if (validationResult.isValid) {
console.log('0 errors');
} else {
console.log(validationResult.errorMsg); // returns the error
}

// or

const validationResult = validateEmail("[email protected]", {
	maxLength: 30,
	errorMsg: [null, "This is an invalid email with my own errors"],
});

if (validationResult.isValid) {
console.log('0 errors');
} else {
console.log(validationResult.errorMsg); // Return  'This is an invalid email with my own errors'
}

Feel free to explore the various functions and experiment with different inputs to understand their behavior. If you encounter any issues or have suggestions, don't hesitate to reach out to me. Your feedback is valuable and helps improve the package. Happy coding!

If you want to help me, you can buy me a coffee (:

By - Gabriel Logan