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

clearance

v0.3.0

Published

Agnostic, asynchronous, and extensible JavaScript object validation.

Downloads

10

Readme

Clearance Build Status

Agnostic, asynchronous, and extensible JavaScript object validation.

Features

Clearance is a powerful, dependency-free validation library that:

  • allows you to create and bind unlimited validation rules to an object.
  • asynchronously validates your objects.
  • works on both the client-side and server-side.
  • gives you complete control over your objects during each state (valid/invalid/validated/unvalidated)

Getting Started

  • Install with Bower - bower install --save clearance
  • Install with NPM - npm install --save clearance

Usage

var schema = [
  { name: "username", rules: [ "required", "alpha" ] },
  { name: "password", rules: [ "required", "alphaNumeric" ] },
  { name: "email", rules: [ "required", "email" ] }
];
   
var clearance = new Clearance( schema );

clearance.validate({
  data: [ 
    { name: "username", value: "jasonbellamy" }, 
    { name: "password", value: "unic0rn" }, 
    { name: "email", value: "[email protected]" } 
  ],
  // Executed if all of the objects are valid.
  valid: function( objects ) {
    // objects => [ {...} ]
  },
  // Executed if there are any invalid objects.
  invalid: function( objects ) {
    // objects => [ {...} ]
  },
  // Executed after the objects have been validated.
  complete: function( objects ) {
    // objects => [ {...} ]
  }
});

Examples

  • Create a validation rule.

Clearance.setRule( "minimumLength", function( object, set, collection ) {
  // object.message - the current message associated with the object being validated.
  // object.name    - the name of the object being validated.
  // object.valid   - the current state of the object being validated.
  // object.value   - the value of the object being validated.
  // set.invalid    - the method to execute if the object is invalid (optional message).
  // set.valid      - the method to execute if the object is valid (optional message).
  // collection     - the collection of objects the object being validated belongs to.
 
  if ( object.value.length < 4 ) {
    set.invalid( "This objects value must be at least 4 characters long." );
  } else {
    set.valid( "Congratulations! This objects value is longer than 4 characters!" );
  }
});
  • Register a schema.
var schema = [
  { 
    name: "username",           // (required) the name of this object.
    rules: [ "minimumLength" ], // (required) validation rules for this object.
    message: "default message", // (optional) default message for this object.
    valid: true                 // (optional) default state for this object.
    value: "default value"      // (optional) default value for this object.
  }
];
  • Validate objects against the schema.
clearance.validate({
  data: [ 
    { name: "username", value: "jab" }
  ],
  valid: function( objects ) {
    // ...
  },
  invalid: function( objects ) {
    // objects => [ { name: "username", value: "jab", message: "This objects value must be at least 4 characters long." } ]
  },
  complete: function( objects ) {
    // objects => [ { name: "username", value: "jab", message: "This objects value must be at least 4 characters long." } ]
  }
});

API

Clearance( schema )

Name | Type | Argument | Description -------|---------|--------------|------------ schema | object[] | <required> | schema containing an array of objects to register for validation.

Clearance.setRule( name, function )

Name | Type | Argument | Description ---------|------------|--------------|------------ name | string | <required> | the name of the rule. function | function | <required> | the rules validation logic.

Clearance.validate( options )

Name | Type | Argument | Description -----------------|------------|--------------|------------ options.data | object[] | <required> | array of objects to validate. options.valid | function | <optional> | executed if all of the objects are valid. options.invalid | function | <optional> | executed if there are any invalid objects. options.complete | function | <optional> | executed after the objects have been validated.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.

License

Copyright (c) 2014 Jason Bellamy
Licensed under the MIT license.