Huge News!Announcing our $40M Series B led by Abstract Ventures.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.3.3
  • npm
  • Socket score

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

promise-to-validate

A promise based wrapper of node-validator

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.

Usage

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
};
check(input)
.where(
  value("voltron").isInt().isNull(),
  value("number").isNull(),
  value("ducks")
    .isEmail()
    .custom(function(){
      return "Error";
    })
)
.valid(function(){
  //called if no invalid fields are found
})
.invalid(function(){
  //called if an invalid field is found
})
.then(function(errors){
  console.log(errors);
  var expected = { 
    voltron: [ 'Invalid integer', 'String is not empty' ],
    ducks: [ 'Invalid email', 'Error' ] 
  };
});

Build Status

FAQs

Package last updated on 18 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