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

@thinknpm/vanilla-validation

v1.0.16

Published

input validation using vanilla javascript

Downloads

18

Readme

@thinknpm/vanilla-validation

Vanilla JavaScript validation rules

Usage

Use in a plain project:

<!-- download the most recent version of the .umd.js library and include in your HTML -->
<script src="./path-to/vanilla-validation.umd.js"></script>
<!-- log vRules to see all validation rules available -->
<script>console.log(vRules);</script>

Use in a node enviroment

Install the package from npm:
npm install --save @thinknpm/vanilla-validation
Include the package
// get vanilla-validation from node_modules
const vRules = require('@thinknpm/vanilla-validation')
// log vRules to see all validation rules available
console.log(vRules);

Validate an input:

<input type="email" id="email" value="[email protected]">
// get email element
var emailElm = document.getElementById('email');
// validate the input by passing the element to the vRules method
vRules.vrule_email(emailElm)
// debugging
console.log(vRules.vrule_email(emailElm)) 
// will return boolean: true

// if the validation does not pass then an object is returning including an error message
// { message: 'Please enter a valid email' }

Rules available

// input is required
vrule_required(elm, customMessage)

// input required if
vrule_requiredIf(elm, validator, customMessage)

// ensure checkbox is ticked
vrule_checkboxTrue(fieldset, customMessage)

// validation at least one button selected
vrule_btn_required(fieldset, customMessage)

// text input (letters and limited special characters)
vrule_textInput(elm, customMessage)

// number input (numbers only)
vrule_numberInput(elm, customMessage)

// validation input length is at least X
vrule_minLength(elm, min, customMessage)

// validation input length is no more than X
vrule_maxLength(elm, max, customMessage)

// minimum value of input
vrule_minValue(elm, min, customMessage)

// maximum value of input
vrule_maxValue(elm, max, customMessage)

// valid date format (e.g. month cant be 15)
vrule_date(date, customMessage)

// validate date required
vrule_date_required(date, customMessage)

// validate that input date is not before X date
vrule_notBeforeX(elm, dateCheck, customMessage)

// age range (between X and Y)
vrule_ageRange(date, ageRange, customMessage)

// check age is atleast X
vrule_minAge(date, minAge, customMessage)

// valid mobile number
vrule_mobileNumber(elm, customMessage)

// valid home number
vrule_homeNumber(elm, customMessage)

// valid home or mobile number
vrule_anyPhone(elm, customMessage)

// valid email address
vrule_email(elm, customMessage)

// valid currency format
vrule_currency(elm, customMessage)

// valid postcode
vrule_postcode(elm, customMessage)