
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@digitaledgeit/validator-chain
Advanced tools
A simple validator chain for running multiple validators on a single input value.
A simple validator chain for running multiple validators on a single input value.
NPM:
npm install --save validator-chain
Component:
component install digitaledgeit/js-validator-chain
A simple example:
var validator = require('validator-chain');
function required(value) {
return value !== '';
}
function digits(value) {
return /^[0-9]+$/.test(value);
}
function length(value) {
return value.length === 10;
}
validator()
.add(required, 'Please enter a phone number')
.add(digits, 'A phone number may only contain digits')
.add(length, 'A phone number may only contain 10 digits')
.validate('0123456789', function(err, valid, ctx) {
if (err) return console.log(':( Uh oh an error occurred whilst trying to validate that phone number');
if (valid) return console.log(':) Yay! You can type');
if (!valid) return console.log(':( Try again: "'+ ctx+'"');
})
;
// Outputs ":) Yay! You can type"
See the examples folder for more.
Create a new validation chain.
Whether an empty value is considered valid and the validators should not be run.
Add a new validator to the chain.
Run the validation methods on a value and call the callback with the result.
Callback arguments:
There are many existing validation methods you can make use of (e.g. validator, validation-methods or validate-date) but if you require some custom logic then it's easy to create your own.
function validator(value) {
//throw new Error(); //return an error
return true; //return whether the value is valid
}
function validator(value, next) {
//next(new Error()); //return an error
next(null, true); //return whether the value is valid
}
FAQs
A simple validator chain for running multiple validators on a single input value.
We found that @digitaledgeit/validator-chain demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.