
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
drip-form-validator
Advanced tools
Simple and Powerful and Customizable validation library for JavaScript.
Simple and Powerful and Customizable validation library for JavaScript.
To install the stable version.
$ npm install --save drip-form-validator
Usage is very simple !
import { Validator } from 'drip-form-validator';
const data = {
firstName: null,
lastName: 'wada',
age: 18,
email: 'email-address',
website: 'foobarbaz',
confirmed: null,
token: '123456789',
projects: [
{ title: 'Project 1', tags: [1] },
{ title: 'Project 2', tags: [4, 8] },
{ title: 'Project 3', tags: ['foo', 'bar', 3] },
],
};
const v = new Validator(data, {
firstName: {
required: true,
},
lastName: {
required: true,
},
age: {
required: true,
min: 22,
},
email: {
required: true,
email: true,
},
website: {
url: true,
},
confirmed: {
required: true,
truthy: true,
},
token: {
checkToken: (value) => value === YOUR_SECRET_TOKEN,
},
'projects.*.tags.*': {
numeric: true,
},
});
if (v.validate()) {
// `data` is valid.
} else {
console.log(v.getAllErrors());
// {
// firstName: [{
// rule: 'required',
// params: true,
// message: 'The firstName field is required.'
// }],
// age: [{
// rule: 'min',
// params: true,
// message: 'The age must be at least 22.'
// }],
// email: [{
// rule: 'email',
// params: true,
// message: 'The email must be a valid email address.'
// }],
// website: [{
// rule: 'url',
// params: true,
// message: 'The website format is invalid.'
// }],
// confirmed: [{
// rule: 'required',
// params: true,
// message: 'The confirmed field is required.'
// }],
// token: [{
// rule: 'checkToken',
// params: [Function: checkToken],
// message: 'The token field is invalid.'
// }],
// 'projects.2.tags.0': [{
// rule: 'numeric',
// params: true,
// message: 'The projects.2.tags.0 must be a number.'
// }],
// 'projects.2.tags.1': [{
// rule: 'numeric',
// params: true,
// message: 'The projects.2.tags.1 must be a number.'
// }]
// }
}
Bugs, feature requests and comments are more than welcome in the issues.
0.0.7
2017-08-30
FAQs
Simple and Powerful and Customizable validation library for JavaScript.
The npm package drip-form-validator receives a total of 20 weekly downloads. As such, drip-form-validator popularity was classified as not popular.
We found that drip-form-validator 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.