Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
validator-handler
Advanced tools
Tiny library to validate and set custom error messages easily.
Install the package:
npm i validator-handler
import validate, { validator, isNotValid, isValid } from 'validator-handler';
const inputs = {
name: "Thiago Silva",
email: "emaildfdf.com",
password: "123a"
};
const isIncluded = (pattern) => data => pattern.test(data)
// `validator` is a third-party library with its own sets of validators that you can use;
// or create your own custom function.
const validations = {
name: ["Please enter a name.", validator.notEmpty],
email: [
"Please enter an email address.", validator.notEmpty,
"Invalid email address.", validator.isEmail
],
password: [
"Be at least 8 characters or longer.", (x) => x.length >= 8,
"Include at least one number or symbol", isIncluded(/[0-9!@#$%¨&*_()+.]/),
"Uppercase and lowercase letter are required.", isIncluded(/(?=[A-Z])(?=[a-z])/)
]
};
const results = validate(inputs, validations);
/*
OUT: { email: [ 'Invalid email address.' ],
password: [ 'Be at least 8 characters or longer.',
'Uppercase and lowercase letter are required.' ] }
*/
// check if results is valid
if (isValid(results)) {
...
}
// check if results is not valid
if (isNotValid(results)) {
// handling error messages
...
}
Functions available | Description |
---|---|
validate(toValidate, validations) | Validate inputs and return error messages if any input invalid. |
isValid(results) | Check if results is valid. |
isNotValid(results) | Opposite of isValid function. |
validator | A library of string validators and sanitizers - list of validators |
FAQs
Tiny library to validate and set custom error messages easily.
The npm package validator-handler receives a total of 7 weekly downloads. As such, validator-handler popularity was classified as not popular.
We found that validator-handler 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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.