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

calidators

v3.0.2

Published

Red hot JavaScript validators

Downloads

1,473

Readme

calidators

Red hot JavaScript validators 🌶

Build Status codecov

yarn add calidators

What's this?

This is a set of validators implemented in JavaScript. They are the validators backing the calidation React form validation library. You can, however, use them whichever way you want!

How do you even?

You can import validators like this:

import * as allOfTheValidators from 'calidators';

However, I suggest you import only the ones you need, so that it's easier for your bundler to tree-shake dead code:

import { isRequired, isEqual } from 'calidators';

Each validator is a curried function that first accepts a configuration, and then the value. The configuration is an object with a message field and an optional extra field that depends on the validator.

If the validator fails, it returns the message field. If the validator passes, it returns null.

Here's an example where I - very step by step - check the content of a field:

import { isRequired } from 'calidators';

const fieldValue = document.querySelector('#first-name').value;
const config = { message: 'You have to give us your first name!' };
const configuredValidator = isRequired(config);
const errorMessage = configuredValidator(fieldValue);
if (errorMessage) console.error(errorMessage);

Here's another example where I validate that the input is at least 5 (in a bit terser way):

import { isGreaterThan } from 'calidators';

const ageFieldValue = document.querySelector('#age').value;
const errorMessage = isGreaterThan({
    message: 'Your age is important to us',
    value: 5,
})(ageFieldValue);
if (errorMessage) console.error(errorMessage);

Does this look pretty straight forward? If not, please submit an issue with your question, and I'll both answer your question and improve this README for future users.

Migration Guide

With the release of [email protected], there's a breaking change that you'll want to be aware of. It was previously established that validators would not run against empty string values. However, a change within the sibling library Calidation has introduced the possibility of non-string value types!

To simplify things, Calidation now determines whether a field is optional or required and which validators to run. And each validator simply determines if the input value meets the test requirements.

If you're using Calidation <= 1.15.1, you should be using Calidators <= 2.1.0

If you're using Calidation >= 1.16.0, you should be using Calidators >= 3.0.0

If you're not using Calidation, but are using Calidators, you may want to do a similar check within your own implementation:

import * as Calidators from 'calidators';

// if the field is optional and the value doesn't pass the isRequired validator, skip all validators
if (!(!fieldValidators.isRequired && Calidators.isRequired()(value) !== null)) {
    // Run fieldValidators
}

Validators

Here's the available validators. If you need a new one, feel free to open a pull request!

isRequired

Validates that a value is not an empty string, null or undefined.

Validates against all value types.

import { isRequired } from 'calidators';

const message = 'Field is required';

isRequired({ message })('') === message;
isRequired({ message })(' ') === message;
isRequired({ message })(null) === message;
isRequired({ message })(undefined) === message;
isRequired({ message })('Some input') === null;

isNumber

Validates that a field only contains numeric characters.

Validates against all value types.

An optional strict parameter disallows type conversion.

import { isNumber } from 'calidators';

const message = 'Field must be a number';
const strict = true;

isNumber({ message })('123') === null;
isNumber({ message })('123.321') === null;
isNumber({ message, strict })(123) === null;
isNumber({ message })('') === message;
isNumber({ message })('Not a number') === message;
isNumber({ message, strict })('123') === message;

isEqual

Validates that a value equals a given value. The value is cast to a String, and then checked for equality with the === operator.

Validates against all value types.

An optional strict parameter checks type first.

import { isEqual } from 'calidators';

const message = "Value must be 'true'";
const value = true;
const strict = true;

isEqual({ message, value })('true') === null;
isEqual({ message, value, strict })(true) === null;
isEqual({ message, value })('') === message;
isEqual({ message, value })('false') === message;
isEqual({ message, value, strict })('true') === message;

isNotEqual

Validates that a value does not equal a given value. The value is cast to a String, and then checked for equality with the === operator.

Validates against all value types.

An optional strict parameter checks type first.

import { isNotEqual } from 'calidators';

const message = "Value must not be 'true'";
const value = true;
const strict = true;

isNotEqual({ message, value })('false') === null;
isNotEqual({ message, value, strict })('true') === null;
isNotEqual({ message, value })('') === message;
isNotEqual({ message, value })('true') === message;
isNotEqual({ message, value, strict })(true) === message;

isGreaterThan / isLessThan

Validates that a value is greater or less than a given value.

Validates against numbers and strings only.

import { isGreaterThan, isLessThan } from 'calidators';

{
    const message = 'Value must be greater than 5';
    const value = 5;

    isGreaterThan({ message, value })(6) === null;
    isGreaterThan({ message, value })('6') === null;
    isGreaterThan({ message, value })('') === message;
    isGreaterThan({ message, value })(5) === message;
    isGreaterThan({ message, value })('5') === message;
}
{
    const message = 'Value must be less than 5';
    const value = 5;

    isLessThan({ message, value })('') === null;
    isLessThan({ message, value })(4) === null;
    isLessThan({ message, value })('4') === null;
    isLessThan({ message, value })(5) === message;
    isLessThan({ message, value })('5') === message;
}

isEmail

Validates that a value is a potentially valid email address. This uses the same validation logic as browsers do when they see an input with type="email".

Validates against strings only.

import { isEmail } from 'calidators';

const message = 'Value must be a valid email';

isEmail({ message })('[email protected]') === null;
isEmail({ message })('') === message;
isEmail({ message })('not a valid @ email') === message;

isRegexMatch

Validates that a value matches a given regular expression.

Validates against strings only.

import { isRegexMatch } from 'calidators';

const message = 'Filename must end with either .js or .jsx';
const regex = /.jsx?$/;

isRegexMatch({ message, regex })('userReducer.js') === null;
isRegexMatch({ message, regex })('App.jsx') === null;
isRegexMatch({ message, regex })('') === message;
isRegexMatch({ message, regex })('.jsx-files') === message;
isRegexMatch({ message, regex })('just baloney') === message;

isWhitelisted

Validates that a value is present in a provided whitelist. The whitelist must be an array. The value is cast to a String (unless in strict mode), and then checked for equality with the whitelist.includes(value) method.

Validates against all values types.

An optional strict parameter disallows type conversion.

import { isWhitelisted } from 'calidators';

const message = "You're not a bro, bro";
const whitelist = ['Chad', 'Bret', true, { foo: 'bar' }];
const strict = true;

isWhitelisted({ message, whitelist })('Chad') === null;
isWhitelisted({ message, whitelist })('Bret') === null;
isWhitelisted({ message, whitelist })('true') === null;
isWhitelisted({ message, whitelist })('{"foo":"bar"}') === null;
isWhitelisted({ message, whitelist, strict })(true) === null;
isWhitelisted({ message, whitelist })('') === message;
isWhitelisted({ message, whitelist })('Ping') === message;
isWhitelisted({ message, whitelist, strict })('true') === message;

isBlacklisted

Validates that a value is not present in a provided blacklist. The blacklist must be an array. The value is cast to a String (unless in strict mode), and then checked for equality with the blacklist.includes(value) method.

Validates against all values types.

An optional strict parameter disallows type conversion.

import { isBlacklisted } from 'calidators';

const message = "You're too bro-ey, bro";
const blacklist = ['Chad', 'Bret', true, { foo: 'bar' }];
const strict = true;

isBlacklisted({ message, blacklist })('') === null;
isBlacklisted({ message, blacklist })('Ping') === null;
isWhitelisted({ message, whitelist, strict })('true') === null;
isBlacklisted({ message, blacklist })('Chad') === message;
isBlacklisted({ message, blacklist })('Bret') === message;
isWhitelisted({ message, whitelist })('true') === message;
isWhitelisted({ message, whitelist, strict })(true) === message;

isMinLength

Validates that an input value is at least a given number of characters long.

Validates against arrays, strings and objects with a length.

import { isMinLength } from 'calidators';

const message = 'Too $hort';

isMinLength({ message, length: 3 })('') === message;
isMinLength({ message, length: 3 })('Pa$$W0rd') === null;
isMinLength({ message, length: 3 })('yo') === message;
isMinLength({ message, length: 3 })('0') === message;

isMaxLength

Validates that an input value is at most a given number of characters long.

Validates against arrays, strings and objects with a length.

import { isMaxLength } from 'calidators';

const message = 'Too $hort';

isMaxLength({ message, length: 3 })('') === null;
isMaxLength({ message, length: 3 })('0') === null;
isMaxLength({ message, length: 3 })('fin') === null;
isMaxLength({ message, length: 3 })('test') === message;

isExactLength

Validates that an input value is exactly a given number of characters long.

Validates against arrays, strings and objects with a length.

import { isExactLength } from 'calidators';

const message = 'Too $hort';

isExactLength({ message, length: 3 })('') === message;
isExactLength({ message, length: 3 })('foo') === null;
isExactLength({ message, length: 3 })('ba') === message;
isExactLength({ message, length: 3 })('bazz') === message;

hasChar

Validates that a value contains at the provide character (or string).

Validates against numbers and strings only.

import { hasChar } from 'calidators';

const message = 'Value must contain character';

hasChar({ message, char: 'm' })('Hello, I am 12') === null;
hasChar({ message, char: 12 })('Hello, I am 12') === null;
hasChar({ message, char: 'Q' })('') === message;
hasChar({ message, char: 'High' })('Hi') === message;
hasChar({ message, char: 7 })('123') === message;

hasDigit

Validates that a value contains at least one digit.

Validates against numbers and strings only.

import { hasDigit } from 'calidators';

const message = 'Value must have at least one digit';

hasDigit({ message })(8900) === null;
hasDigit({ message })('Hello, I am 12') === null;
hasDigit({ message })('') === message;
hasDigit({ message })('Hi') === message;

hasUppercase

Validates that a value contains at least one uppercase character.

Validates against strings only.

import { hasUppercase } from 'calidators';

const message = 'Value must contain at least one uppercase character';

hasUppercase({ message })('') === message;
hasUppercase({ message })('Hello, John') === null;
hasUppercase({ message })('no uppercase here') === message;

hasLowercase

Validates that a value contains at least one lowercase character.

Validates against strings only.

import { hasLowercase } from 'calidators';

const message = 'Value must contain at least one lowercase character';

hasLowercase({ message })('') === message;
hasLowercase({ message })('Hello, John') === null;
hasLowercase({ message })('SCREAM UPPERCASE') === message;

Want to contribute?

I'd love some help! Report bugs, help me document stuff, create new validators and add new features!