Socket
Socket
Sign inDemoInstall

@springworks/input-validator

Package Overview
Dependencies
2
Maintainers
1
Versions
447
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @springworks/input-validator

Module to help validate input parameters.


Version published
Weekly downloads
2.7K
increased by341.49%
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 07 Feb 2017

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc