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

fieldvalidator

v2.1.4

Published

Use HTML5 field element attributes to validate field input dynamically. Allows for flexible validation management without relying on browser implementations

Downloads

10

Readme

fieldValidator

Uses HTML and HTML5 form element attributes (min, max, maxlength, type, step, etc.) to validate user input.

Getting started

This plugin is made to be used within the browser. Start by installing the module in your project's directory:

npm install fieldvalidator

If you use Browserify you can then require it within your code:

var validate = require("fieldvalidator").validate;

Otherwise, just link to the fieldValidator.min.js script from node_modules/fieldvalidator/

How it works

The validate() function expects:

  • First argument is mandatory: an HTML object. This is the starting point where fieldValidator will grab all fields to validate.
  • Second optional argument (true|false), indicating whether to fallback to browserValidation if it is supported. (false by default).

Whether you fallback to browserValidation or not, the output always has the same structure.

From that object it will grab all form fields (input, textarea, select) and validate them based on their HTML5 form attributes:

  • min
  • max
  • minlength (technically not in the HTML5 spec, but we found it common enough to add it)
  • maxlength
  • pattern
  • required
  • step
  • type (doesn't currently validate datetime types)

It will return an array of validation objects, each object has 3 properties:

  • field: a reference to the HTML field that was validated. This will be an array of fields in the case of checkboxes & radios.
  • errors: an array of error strings to signify what caused the error (it will return the name of the faulty attribute's name)
  • isValid: boolean, representing whether the field passed validation or not.

If the browser has the "validity" object for fields, the module will use the values available there instead of making it's own validations (except for minlength validation).

You are then free to handle these errors as you see fit.

A simple example

The HTML

<div id="my-form">
    <label for="fullname">What is your name?</label>
    <input type="text" name="fullname" required="required" />
    
    <label for="color">What is your favorite color?</label>
    <select name="color" required="required">
        <option value=""></option>
        <option value="red">Red</option>
        <option value="green">Green</option>
        <option value="blue">Blue</option>
    </select>
    
    <label for="email">What is your email address?</label>
    <input type="email" name="email" />
    
    <input type="button" id="form-button" value="send" />
</div>

The JavaScript

(function() {
    var validate = require("fieldvalidator").validate;
    document.getElementById("form-button").addEventListener("click", function(e) {
        validate(document.getElementById("my-form")).some(function(v) {
            if (v.isValid === false) {
                e.preventDefault();
                alert("Please fill out the form properly");
            }
        });
    }, true);
}());

Possible results:

Perfect use-case (no errors)

[
    {
        field: "reference to fullname field",
        errors: [],
        isValid: true
    },
    {
        field: "reference to the color field",
        errors: [],
        isValid: true
    },
    {
        field: "reference to the email field",
        errors: [],
        isValid: true
    }
]   

User forgot to fill out the "fullname" field and entered an invalid email in the "email" field

[
    {
        field: "reference to fullname field",
        errors: ["required"],
        isValid: false
    },
    {
        field: "reference to the color field",
        errors: [],
        isValid: true
    },
    {
        field: "reference to the email field",
        errors: ["type"],
        isValid: false
    }
]   

Change log

  • 2016-01-25 (v2.1.0) - improved support for datetime, added pattern matching support for datetime type fields
  • 2015-08-05 (v2.0.1) - added version string to fieldValidator object
  • 2015-07-14 (v2.0.0) - added support for type="time", added support for step="any", fixed type="month" validation, added browserValidation fallback
  • 2015-07-13 (v1.1.3) - adding support for "time" type
  • 2015-07-11 (v1.1.2) - improved code documentation (see github repo). Reduced some unnecessary looping.
  • 2015-07-10 (v1.1.1) - re-added the module.exports or window exposing feature
  • 2015-07-10 (v1.1.0) - added support for type="date" and type="month" The date format must always be YYYY-mm-dd.
  • 2015-07-09 (v1.0.6) - first publication on NPM, few minor adjustments to package.