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

ferds-validator

v1.0.4

Published

Ferds Validator is simple validation for NodeJS

Downloads

3

Readme

Ferds Validator

Ferds Validator is a simple validator that is intended for processing data validation in a concise manner. Ferds Validator has several advantages over other packages, such as:

  • Use only one variable to perform various validations
  • Validation looks more familiar to those of you who are accustomed to using the PHP programming language with the CodeIgniter and Laravel framework

Features

Now, let’s describe the features:

  • Check for required data.
  • Simple basic validation rules
  • Verify that the data is of the correct type, and meets the correct criteria. For example, if a username is submitted it must be validated to contain only permitted characters. It must be of a minimum length, and not exceed a maximum length. Etc.

Installation

$ npm install ferds-validator

Usages

Basic validation usage

Examples of simple use :

var validator = require( 'ferds-validator' );
var rules = [
	{
		"name": "Alpha Only", // field description
		"value": "ABC", // value that will be validated
		"rules": "alpha" // validate alphabet characters only
	},
	{
		"name": "Required Alpha Only",
		"value": "",
		"rules": "required|alpha"
	},
	{ // Return false, because the value must be greater or equal to 30
		"name": "Age",
		"value": 25,
		"rules": "required|numeric|greater_than_equal_to(30)"
	},
	{ // Return False
		"name": "Exact Length",
		"value": "ABCDE92",
		"rules": "required|exact_length(5)|alpha"
	},
	{ // Return False
		"name": "Minimum Length",
		"value": "123123",
		"rules": "required|min_length(2)|numeric"
	},
	{ // Return True
		"name": "Maximum Length",
		"value": "123123",
		"rules": "required|max_length(10)|numeric"
	},
	{ // Return True
		"name": "Maximum Length Or Equal To",
		"value": "AB123",
		"rules": "required|max_length_equal_to(5)|alpha_numeric"
	},
	{ // Return True
		"name": "Birth Date",
		"value": "1993-11-267",
		"rules": "required|date(YYYY-MM-DD)"
	},
}
var run_validator = validator.run( rules ); // Set to variable
console.log( run_validator ); // Raw output

if ( run_validator.status == false ) {
	// your code...
}
else {
	// your code...
}

Raw output :

{
	"status": false,
	"message": "Unfortunately, some error has occured.",
	"error_lists": [
		"The Required Alpha Only field is required. ",
		"The Age field must contain a number greater than or equal to 30. ",
		"The Exact Length field must be exactly 5 characters in length. ",
		"The Exact Length field may only contain alphabetical characters. ",
		"The Birth Date field must contain a valid date with format YYYY-MM-DD. "
	]
}

Simple usage with Express

Examples of simple use with express :

const express = require( 'express' );
const body_parser = require( 'body-parser' );
const app = express();
const validator = require( 'ferds-validator' );

app.use( body_parser.urlencoded( { extended: false } ) );
app.use( body_parser.json() );
app.listen( 5000, () => {
	console.log( 'Tester Package running on port 5000' );
} );
app.post( '/test', ( req, res ) => {
	var rules = [
		{
			"name": "IP Address",
			"value": req.body.ip_address,
			"rules": "ip_address"
		},
		{
			"name": "Regex Match",
			"value": req.body.regex_match,
			"rules": "required|regex_match(/^[a-zA-Z0-9]+$/)"
		},
		{
			"name": "Website URL",
			"value": req.body.website_url,
			"rules": "required|url"
		},
		{
			"name": "Longitude",
			"value": req.body.longitude,
			"rules": "required|longitude"
		},
		{
			"name": "Latitude 1",
			"value": req.body.latitude,
			"rules": "required|latitude"
		},
	];
	var run_validator = validator.run( rules ); // Set to variable

	if ( run_validator.status == false ) {
		// Sample
		res.json( {
			status: false,
			message: "Please check your input.",
			error_lists: run_validator.error_lists // Show error validation lists
		} );
	}
	else {
		// your code if validation is true...
	}
} );

Rule Reference

The following is a list of all the native rules that are available to use:

| Rule | Parameter | Description | Examples | | ------------- |:-------------:|:-------------:|:-------------:| | alpha | No | Returns FALSE if the form element contains anything other than alphabetical characters. | | | alpha_numeric | No | Returns FALSE if the form element contains anything other than alpha-numeric characters. | | | alpha_numeric_spaces | No | Returns FALSE if the form element contains anything other than alpha-numeric characters or spaces. Should be used after trim to avoid spaces at the beginning or end. | | | alpha_spaces | No | Returns FALSE if the form element contains anything other than alphabetical characters or spaces. | | | date | Yes | Returns FALSE if the form element does not contain a valid date. The allowed format is DD-MM-YYYY, YYYY-MM-DD, DD/MM/YYYY, YYYY/MM/DD, DD.MM.YYYY, or YYYY.MM.DD, | date(YYYY-MM-DD) | | email | No | Returns FALSE if the form element does not contain a valid email address. | | | greater_than | Yes | Returns FALSE if the form element is less than or equal to the parameter value or not numeric. | greater_than(10) | | greater_than_equal_to | Yes | Returns FALSE if the form element is less than the parameter value, or not numeric. | greater_than_equal_to(243) | | latitude | No | Returns FALSE if the form element is values doesn't between -90 to 90 degrees. | | | longitude | No | Returns FALSE if the form element is values doesn't between -180 to 180 degrees. | | | less_than | Yes | Returns FALSE if the form element is greater than or equal to the parameter value or not numeric. | less_than(10) | | less_than_equal_to | Yes | Returns FALSE if the form element is greater than the parameter value, or not numeric. | less_than_equal_to(243) | | max_length | Yes | Returns FALSE if the form element is longer than the parameter value. | max_length(2) | | max_length_equal_to | Yes | Returns FALSE if the form element is longer than or not equal to the parameter value. | max_length_equal_to(2) | | min_length | Yes | Returns FALSE if the form element is shorter than the parameter value. | min_length(5) | | min_length_equal | Yes | Returns FALSE if the form element is shorter than or not equal to the parameter value. | min_length_equal_to(7) | | numeric | No | Returns FALSE if the form element contains anything other than numeric characters. | | | ip_address | No | Returns FALSE if the supplied IP address is not valid. Accepts an optional parameter of ‘ipv4’ or ‘ipv6’ to specify an IP format. | | | regex_match | Yes | Returns FALSE if the form element does not match the regular expression. | regex_match(/^[a-zA-Z0-9]+$/) | | required | No | Returns FALSE if the form element is empty. | | | url | No | Returns FALSE if the form element does not contain a valid URL. | |

Author

Ferdinand [[email protected]]