Socket
Socket
Sign inDemoInstall

@springworks/input-validator

Package Overview
Dependencies
Maintainers
1
Versions
448
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@springworks/input-validator

Module to help validate input parameters.


Version published
Weekly downloads
1.2K
decreased by-64.14%
Maintainers
1
Weekly downloads
 
Created
Source

Node.js Input Validator module

Build Status Coverage Status Greenkeeper badge

Simple Node.js module to validate input parameters.

npm install --save @springworks/input-validator

API

validateSchema(obj, schema, resource_name, options)

Validates obj against a joi schema. It will throw an error if validation fails.

import { joi, validateSchema } from '@springworks/input-validator';

const schema = joi.object().keys({
  username: joi.string().required(),
  password: joi.string().required()
});

const validated = validateSchema({
  'username': 'foo',
  'password': 'bar'
}, schema);

Keywords

FAQs

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