Socket
Socket
Sign inDemoInstall

selective

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    selective

Select and validate dynamic parameters via predefined options


Version published
Maintainers
1
Install size
5.83 kB
Created

Readme

Source

Select parameters from an object (such as express's req.query) and return any errors based on a specification defined.

npm install selective

Append one of the following to each option to specify a requirement for that parameter:

* Represents an optional parameter.
# Represents a group (if one field from a group is in req.query then require the entire group).

var selective = require('selective');

var params = {
  name: 'bradley',
  email: 'bradley@example.com',
  random: 'random param'
}

selective.select(params, ['#name', '#email', '#password', '*location', 'phone'], function(err, selected){
  if(err) console.log(err)
  else console.log(selected);
});

Will output:

[ { field: 'password', type: 'Missing Field' },  // 'password' is part of a group with a param sent (name).
  { field: 'phone', type: 'Missing Field' },     // 'phone' is a required field.
  { field: 'random', type: 'Invalid Field' } ]   // 'random' is an undefined option.  
  
  // An error was not thrown for location as it is an optional field.

Run the tests make test

Build Status

FAQs

Last updated on 17 Apr 2012

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