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

decree

v0.0.6

Published

Declarative arguments-resolver

Downloads

1,333

Readme

Version Build Status Coverage Status

Declarative arguments-resolver

  1. Overview 0. Install 0. Example
  2. How to use 0. Declaration structure 0. Errors 0. Built-in types 0. Custom types

Overview

Decree is a declarative arguments-resolver. It saves you time and code when you need to do arguments validation and disambiguation in your APIs.

Simply declare the conditions your arguments should hold, such as their types, whether they are optional and their default values. Decree will take care of the rest, and provide you with clean and disambiguated arguments.

If the user provided an illegal combination of arguments, Decree will tell you where was the problem.

Install

  1. To use in Node, install with npm: npm install decree
  2. To use in the browser, install with bower: bower install decree
    On the browser Decree loads as an AMD module (see examples/amd).

Example

Let's say you have a function which takes 4 arguments, some are optional. Inside the function you need to:

  1. Verify the types of the arguments.
  2. Detect which of the arguments were provided and which were omitted.
  3. Disambiguate and assign default values to omitted arguments.

Without Decree:

/**
 * Make a cup of coffee.
 * @param {number} [sugars=1] - number of sugars. non-negative decimal number. defaults to 1.
 * @param {string} [flavor='bitter'] - flavor of the coffee. defaults to 'bitter'.
 * @param {string|integer} [size='large'] - size of cup. 'small', 'medium', 'large' or a positive integer.
 * @param {function} callback - called when coffee is ready.
 */
function makeCoffee(sugars, flavor, size, callback){
    // verify arguments:
    // was sugars provided? if not, flavor = sugars? size = flavor? callback = size?
    // but what if flavor was not provided...?
    // what about the callback? maybe callback = size? callback = flavor?
    // is 'callback' a function? if not, throw an exception?
    // ...
    // ...
    // ...
    // finally:
    if (/* arguments are valid */){
        // make coffee...
        callback('Coffee is ready!');
    } else {
        throw Error('Invalid arguments!');
    }
}

With Decree:

Simply decalare the properties of your arguments:

var decs = [{
    name: 'sugars',
    type: 'nn-number', // non-negative
    optional: true,
    default: 1
}, {
    name: 'flavor',
    type: 'string',
    optional: true,
    default: 'bitter'
}, {
    name: 'size',
    types: ['string', 'p-int'], // string or positive integer
    optional: true,
    default: 'large'
}, {
    name: 'callback',
    type: 'function'
}];

Let Decree do the rest:

/**
 * Make a cup of coffee.
 * @param {number} [sugars=1] - number of sugars. non-negative decimal number. defaults to 1.
 * @param {string} [flavor='bitter'] - flavor of the coffee. defaults to 'bitter'.
 * @param {string|integer} [size='large'] - size of cup. 'small', 'medium', 'large' or a positive integer.
 * @param {function} callback - called when coffee is ready.
 */
function makeCoffee() {
    decree(decs)(arguments, function(sugars, flavor, size, callback) {
        // arguments are disambiguated and ready to be used.
        // make coffee...
        callback('Coffee is ready!');
    });
};

Now use your function as usual:

makeCoffee(1.5, function(msg){
    console.log(msg); // 'Coffee is ready!'
});

How to use

Decree needs to know what you expect. Simply build an array to describe your arguments expectations.

// declarations:
var decs = [{/* arg 1 */}, {/* arg 2 */}, {/* arg 3 */}, ...];

Each item in the array is an object which describes an argument. See declaration structure.

When finished declaring your expectations, use Decree to resolve an array of arguments. Calling decree(...) will construct a function which receives an array of arguments and disambiguates it.

var judge = decree(decs); // `judge` is a function

The constructed judge function has the following signature:

function judge(args, callback, errCallback)

  1. args {Array} - The array of arguments to disambiguate.
  2. callback {Function} - an optional callback function which is called with the disambiguated arguments.
  3. errCallback {Function} - an optional callback to handle arguments errors. This function is called with the error, if there was an error disambiguating the arguments array.

Note:

  • If errCallback is omitted, and there is an error, an exception will be thrown.
  • If callback is omitted as well, judge will return the array of disambiguated arguments.
var decree = require('decree');
var decs = [ /* declarations of foo's arguments */ ];
var judge = decree(decs);

function foo() {
    // pass your function's arguments directly to decree:
    judge(arguments, function(arg1, arg2, arg3, ...) {
        // here you can be sure your arguments are of
        // the correct types and values.
    }, function(err){
        // there was a problem with the provided arguments.
        // log it, and throw an exception to the user.
        console.log(err);
        throw err;
    });
}

// use foo as normal:
foo( ... );

Declaration structure

When declaring an argument, tell Decree:

  1. name {String}: Optional. Will be used to identify the argument in error messages.
  2. type {String} / types{Array[String]}: Required. See built-in types or custom types.
  3. optional {Boolean}: Optional. Is this argument optional? Defaults to false.
  4. default: Optional. If the argument is optional, this default value will be assigned if no value is provided.
{
    name: ...,
    types: [ ... ],
    optional: ...,
    default: ...
}

Note: If an optional argument has no default value, and that argument is omitted by the user, decree will assign this argument undefined.

Errors

When there is a problem with the arguments Decree can provide a detailed explanation of what went wrong. By default, an error object will be thrown, unless you provide a second callback which is called with the error.

var decree = require('decree');

// with an exception:
function foo() {
    try {
        decree(/* decs */)(arguments, function(/* args */) {
            // ...
        });
    } catch (err) {
        // if here, there was a problem with the arguments the user passed.
        // 'err' contains the information you need
    }
}

// or, with an error handling callback:
function foo() {
    decree(/* decs */)(arguments, function(/* args */) {
        // ...
    }, function(err) {
        // if here, there was a problem with the arguments the user passed.
        // 'err' contains the information you need
    });
}

Built-in types

Decree supports several argument types:

  • *: Argument matches any type.
  • array
  • function
  • hash: Argument is a simple key-value object.
  • string
  • regexp: Argument is a regular expression.
  • boolean
  • date: Argument is a Date object.
  • number
  • n-number: Argument is a negative number
  • p-number: Argument is a positive number
  • nn-number: Argument is a non-negative number
  • np-number: Argument is a non-positive number
  • int: Argument is an integer
  • n-int: Argument is a negative integer
  • p-int: Argument is a positive integer
  • nn-int: Argument is a non-negative integer
  • np-int: Argument is a non-positive integer

Custom types

Register a custom type with:

decree.resigter(name, validator)

  1. name {String} - The name of the new type.
  2. validator {Function} - A validation function. Receives a value and should return true or false.

Example:

var decree = require('decree');

// register a 'color' type:
decree.register('color',function(v){
    return ["blue", "red", "green", "yellow"].indexOf(v) !== -1;
});

// use it:
var decs = [{
    type: 'color',
    optional: true,
    default: "blue"
}];