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

waechter

v1.0.0-alpha.6

Published

simple, functional, sync/async validation for Node.js and browsers

Downloads

2

Readme

waechter

ALPHA NPM Package Build Status Dependencies

simple, functional, sync/async validation for Node.js and browsers

inspired by Prismatic/schema

waechter is german for guardian

npm install waechter
bower install waechter

lib/waechter.js supports AMD. if AMD is not available it sets the global variable waechter.

require:

> var waechter = require('waechter');

predicates

a predicate is a function that takes a value and returns a boolean indicating whether that value is valid.

is.js is a big collection of predicates.
waechter doesn't reinvent the wheel and uses is.js predicates:

> var isjs = require('isjs');

> isjs.email('i am definitely not an email address');
false

> isjs.email('[email protected]');
true

validators

a validator is a function that takes a value and returns nothing (null or undefined) if the value is valid. otherwise it returns a value describing the error. that value is usually a string that is a helpful error message or an object whose values are error messages.

you can make a validator from a predicate using waechter.predicateToValidator

> var validateEmail = waechter.predicateToValidator(
  // the predicate
  isjs.email,
  // the value that is returned when the predicate returns false
  'must be an email address'
);

you can then use the validator to validate some data:

> validateEmail('i am definitely not an email address');
'must be an email address'

> validateEmail('[email protected]');
null

these validators are builtin

  • waechter.exist
  • waechter.string
  • waechter.stringNotEmpty
  • waechter.email
  • waechter.stringMinLength(min)
  • waechter.number
  • waechter.numberWithin(min, max) (range is exclusive)
  • waechter.true
  • waechter.false
  • waechter.undefined
  • waechter.null
  • waechter.boolean

you can easily make your own validators using waechter.predicateToValidator.

composing validators

waechter.and(validators...) returns a validator that returns null if all validators return null and otherwise returns the first error.

waechter.or(validators...) returns a validator that returns null if at least one of the validators returns null and otherwise returns an array of errors.

use waechter.undefinedOr(validators...) to make things optional.

schemas

a schema is an object whose values are validators:

> var userSchema = {
  email: waechter.email,
  password: waechter.stringNotEmpty
};

you can make a validator from a schema:

> var validateUser = waechter.schemaToValidator(userSchema);

you can then use that validator to validate the structure of objects:

> validateUser({
  email: 'invalid'
});
{
  email: 'must be an email address',
  password: 'must not be null or undefined'
}
> validateUser({
  email: '[email protected]',
  password: 'topsecret'
});
null

keys that are not present in the schema are not allowed in the data:

> validateUser({
  email: '[email protected]',
  password: 'topsecret'
  is_admin: true
});
{
  is_admin: 'disallowed key'
}

async validators

an async validator is like a validator but returns a promise.

you can lazily (only when needed) run async validators after sync validators like so:

> var userSchema = {
  email: waechter.email,
  password: waechter.stringNotEmpty
};

> var userSchemaAsync = {
  email: function(email) {
    return doesUserWithEmailAlreadyExistInDatabase(email).then(function(exists) {
      if (exists) {
        return 'taken';
      }
    });
  }
};

> validateUser = waechter.schemasToLazyAsyncValidator(
  userSchema,
  userSchemaAsync
);

you can mix schemas with sync and async validators in the arguments to waechter.schemasToLazyAsyncValidator.

validators in later schemas are only run for keys that have no errors yet:

> validateUser({
  email: 'invalid'
}).then(function(errors) {
  > errors
  {
    email: 'must be an email address',
    password: 'must not be null or undefined'
  }
});

here the validator userSchemaAsync.email wasn't called.

> validateUser({
  email: '[email protected]'
}).then(function(errors) {
  > errors
  {
    email: 'taken',
    password: 'must not be null or undefined'
  }
});

this time the validator userSchemaAsync.email was called.

see the tests for more usage examples.

license: MIT