
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
js-validate
Advanced tools
Functional, extensible, input validation. Make sure the value you receive is EXACTLY what you expect.
Functional, extensible, input validation. Make sure the value you receive is EXACTLY what you expect.
npm install js-validate
const Validator = require('js-validate');
const validate = new Validator;
Validate against a single rule:
validate('123', 'min-length 2'); //--> true
Validate against multiple rules:
validate('123', ['min-length 2', 'number']); //-->true
Create a validator alias (single-rule):
Validator.alias('short', 'max-length 3');
Create a validator alias (multiple rules):
Validator.alias('account-number', [
'alphanumeric -',
'min-length 7',
'starts-with 000-',
'ends-with -00'
]);
Create a custom rule:
Validator.rule('isOkay', (input) => {
return String(input).toLowerCase() === 'ok';
});
Integrate other great validators:
const tin = require('tin-validator');
Validator.rule('ssn-ein-tin', tin.isValid);
Test custom rules and aliases:
validate('ok', 'isOkay'); //--> true
validate('OK', ['isOkay', 'short']); //--> true
validate('000-23422823934-00', 'account-number'); //--> true
validate('Abc', 'alpha'); //--> true
validate('ABC123', 'alpha'); //--> false
validate('abc123', 'alphanumeric'); //--> true
validate('123 Main Street', 'alphanumeric'); //--> false
validate('123 Main Street', 'alphanumeric _space_'); //--> true
validate('true', 'boolean'); //--> true
validate('false', boolean'); //--> true
validate(FALSE, 'boolean'); //--> true
validate('JoJo', 'capitals 2'); //--> true
validate('abc123', 'endsWith 123'); //--> true
validate('555-888-0000', 'endsWith 0'); //--> true
validate('abc', 'equal abc'); //--> true
validate('abc', 'equal ABC'); //--> false
validate('123', 'equal 123'); //--> true
validate(123, 'equal 123'); //--> false
validate(123, 'length 3'); //--> true
validate(000123, 'length 6'); //--> false
validate(000123, 'length 2'); //--> true
validate('000123', 'length 6'); //--> true
validate('123', 'matches 123'); //--> true
validate(123, 'matches 123'); //--> true
validate('123', 'matches 123'); //--> true
validate(123, 'matches 123'); //--> false
validate(123, 'max 125'); //--> true
validate(123, 'max-length 3'); //--> true
validate(123, 'max-length 2'); //--> false
validate(123, 'min 122'); //--> true
validate(123, 'min-length 3'); //--> true
validate(123, 'min-length 4'); //--> false
validate('50.00'', 'number'); //--> true
validate('50A', 'number'); //--> false
validate('#1 Fan', 'numbers 1'); //--> true
validate('Catch 22', 'numbers 1'); //--> false
validate('123', 'numeric'); //--> true
validate(123, 'numeric'); //--> true
validate('ABC123', 'numeric'); //--> false
validate('ABC123', 'specials 0'); //--> true
validate('ABC*123', 'specials 1'); //--> true
validate('Hello!!!', 'specials 3'); //--> true
validate('$1', 'starts-with $'); //--> true
validate('ABC123', 'starts-with ABC'); //--> true
validate('ABC123', 'starts-with abc'); //--> false
We need to greatly expand the rules, prune, and modify them. We are also open to changes in the API of this utility. Make and issue on github to connect.
FAQs
Functional, extensible, input validation. Make sure the value you receive is EXACTLY what you expect.
The npm package js-validate receives a total of 1 weekly downloads. As such, js-validate popularity was classified as not popular.
We found that js-validate 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.