New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

promise-to-validate

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promise-to-validate

A simple promise based validation utility that wraps the functionality of node-validator

  • 0.4.0
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

promise-to-validate

Install

npm install promise-to-validate

=======

Introduction

Validating is always a repetitive but important portion of developing any application. If your projects are anything like mine you end up spending too much of your time making sure that the input that you were given actually makes sense.

The goal of promise-to-validate is to make validation as simple and effortless as possible. It will support custom validators and allow you to make async validation requests to check your users' input.

Example

var check = require('promise-to-validate').check;
var value = require('promise-to-validate').value;

var input = {
  voltron: "made of cats",
  ducks: "MUST wear pants",
  number: null,
  int: 9
};
check(input)
.where(
  value("voltron").isInt().isNull(),
  value("number").isNull(),
  value("ducks")
    .isEmail()
    .custom(function(){
      return "Error";
    })
)
.then(function(errors){
  var expected = { 
    voltron: [ 'Invalid integer', 'String is not empty' ],
    ducks: [ 'Invalid email', 'Error' ]
  };
});
check

Check is a function used for chaining multiple fields on an input object. The check interface offers a few methods. Every method in check returns a reference to the current check object.

var check = require('promise-to-validate').check;

check(obj);
//builds a new checking object with the object to be validated to be set to obj.

check().set(obj)
// sets the object that is the target of validation to obj.


check(obj)
  .where([values]);
//Adds a list of value objects to the list of values with validation specification.


function success(errorObject){}
function fail(ex){}

check(obect).where[values]()
  .then(success,fail);
//success is called with an object containing a key with any fields that have invalid values.
//fail is only called when an exception is thrown inside a custom validator. 
value

The value object returns a builder that has a collection of validation methods. For a list of all of the validation functions supported you can see the underlying library node-validator proxied by the value class.

Install

npm install promise-to-validate

VIM! Build Status

FAQs

Package last updated on 20 Jan 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc