Socket
Socket
Sign inDemoInstall

@springworks/input-validator

Package Overview
Dependencies
9
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.5K
increased by299.21%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Node.js Input Validator module

Simple Node.js module to validate input parameters.

Build Status Coverage Status

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 24 Jul 2016

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc