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

@maynoothuniversity/validate-params

v1.2.3

Published

A wrapper around validate.js to facilitate easy function parameter validation in JavaScript.

Downloads

30

Readme

validateParams.js (@maynoothuniversity/validate-params)

A wrapper around validate.js to facilitate easy function parameter validation in JavaScript.

validate.js is designed to validate web forms. HTML form data is fundamentally a collection of name-value pairs, so it makes sense that the validation functions provided by validate.js expect both the data to be validated, and the constraints to be applied to that data to be specified as collections of name-value pairs (JavaScript objects).

Function parameters are not name-value pairs, they are lists of values. Hence, the validation functions provided by this module expect both the data to be validated, and the constraints to be applied to that data to be specified as lists.

Internally, the module converts the passed parameter and constraint lists to collections of name-value pairs which it then validates with validate.js.

As well as translating between lists and name-value pairs, the module also provides a number of other additional features which focus on parameter validation, including the specification of default values, support for data coercion, improved support for nested constraints, and a number of additional validators.

Installation

NodeJS

Install the module and its dependencies:

npm install '@maynoothuniversity/validate-params' --save

Load the module:

var validateParam = require('@maynoothuniversity/validate-params');

Browser (CDN)

<!-- Import validate.js then validateParams.js -->
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/validate.js/0.11.1/validate.min.js"></script>
<script type="text/javascript" src="https://cdn.rawgit.com/bbusschots-mu/validateParams.js/master/validateParams.js" ></script>

Synopsis:

// passes through the return value from validate.js
var errors = validateParams(parameterList, constraintList, [options]);

or

// returns a validateParams.Result object
var result = validateParams.validate(parameterList, constraintList, [options]);
// throws a validateParams.ValidationError if validation fails
validateParams.assert(parameterList, constraintList, [options]);

The parameterList can be an array, or, JavaScript's special arguments variable.

The constraintList is an array of object literals, each defining one or more validate.js compatible constraints.

The optional options parameter should be an object literal, and can be used to specify options that alter both the behaviour of the validation functions provided by this module, and the validation functions from validate.js used to perform the actual validations.

Example

// An implementation of the Factorial function
// The first argument must be present, an integer, and >= 0
function fact(n){
    // validate the parameter
    validateParams.assert(
        arguments,
        [{
            presence: true,
            numericality: {
                onlyInteger: true,
                greaterThanOrEqualTo: 0
            }
        }
    ]); // will throw a validateParams.ValidationError on invalid params
    
    // do the calculation
    var ans = 1;
    while(n > 0){
        ans *= n;
        n--;
    }
    
    // return the result
    return ans;
}

var x = fact(4); // x=24
var y = fact('4'); // x=24
var z = fact('stuff'); // throws validateParams.ValidationError

Documentation