Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

check-input

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

check-input

Validate input and throw a custom error. Use it in promise chains

  • 1.3.0
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

check-input

Build Status Coverage Status

Validates input. Throws a custom error message if input is not valid. For use in promise chains.

Installation

npm install --save check-input

Usage

const checkInput = require('checkInput');

checkInput.isString(123); // throws error

In a promise chain:

Promise.resolve()
    .then(() => checkInput.isString(123))
    .then(() => console.log('valid!'))
    .catch(err => console.log(err.message)); // logs 'invalid input, should be of type string'

Validate an object shape:

function validateUser(user) {
  return checkInput.isObject(user, {
    shape: {
      name: {type: 'string', required: true},
      age: {type: 'number', required: true},
      hobbies: {type: 'array', elementType: 'string'}
    }
  })
}

function postUsers(req, res, next) {
  Promise.resolve()
    .then(() => validateUser(req.body.user))
    .then(user => db.addUser(user))
    .then(user => res.send(user))
    .catch(err => next(err));
}
const checkInput = require('checkInput');

checkInput.isNumber(123, {
    max: 100,
    min: 10,
    errorMessage: 'number must be between 10 and 100'
}); // throws error - 'number must be between 10 and 100'

Methods

Check out the docs for detailed info

.isArray(input [,options])
.isNumber(input [,options])
.isString(input [,options])
.isObject(input [,options])

Keywords

FAQs

Package last updated on 07 Feb 2017

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