Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
A parameter verify tools.
$ npm install parameter
/**
* Verify data with rules.
*
* @param {Object} data input data parameters
* @param {Object} rules verify rules
* {
* key1: parameter.Id, // must be string and number value, e.g.: '123', '043624'
* // key1: { isId: true },
* key2: parameter.Date, // must match 'YYYY-MM-DD' format date string, e.g.: '2013-06-25'
* // key2: { isDate: true },
* key3: parameter.DateTime, // must match 'YYYY-MM-DD hh:mm:ss' format date string, e.g.: '2013-06-25 12:20:50'
* // key3: { isDateTime: true },
* key4: 'number', // must match `typeof` result, could be 'number', 'string', 'function' or 'object'
* // key4: { type: 'number' },
* key5: { required: false, type: 'number' }, // optional value, if set, must be a number
* key6: { required: false, type: parameter.Date }, // optional value, if set, must be a date string
* key7: { isArray: true, resourceName: 'User', rules: { name: 'string', age: 'number' } }
* // key7: parameter.Array,
* // key7: { type: parameter.Array, resource: 'User', rules: { name: 'string', age: 'number' } }
* key8: { isObject: true, resourceName: 'User', rules: { name: 'string', age: 'number' } }
* // key8: parameter.Object,
* // key8: { type: parameter.Object, resource: 'User', rules: { name: 'string', age: 'number' } }
* key9: /^\d+$/, // must match number or number string.
* key10: ['y', 'm', 'd', 'w'], // must match enums
* }
* rules's keys must exists on `data`. If `data.key1` not exists, will got `missing_field` error.
* @param {String} [resourceName] error resource name, default is 'Param'
*
* @return {null|Array} errors, return null meaning no errors.
* e.g.: [{
* resource: 'Param',
* field: 'id',
* message: 'id required',
* code: 'missing_field'
* }, ... ]
*/
var p = require('parameter');
var data = {
id: '043624',
nick: '苏千',
date: '2013-06-25',
age: 29,
sid: 123, // or '123'
uid: '456',
unit: 'y',
};
var wrongData = {
nick: 123,
date: '2013-06-1',
age: '29',
sex: 0,
sid: '123foo',
uid: 'bar',
unit: 'yy',
};
var rules = {
id: p.Id,
nick: 'string',
date: p.Date,
age: 'number',
sex: { required: false, type: 'string' },
sid: /^\d+$/,
uid: { type: /^\d+$/, message: 'should be digital' }, // custom error message
unit: ['y', 'm', 'd', 'w'],
};
var errors = p.verify(data, rules);
// errors => null
var errors = p.verify(wrongData, rules);
// errors =>
// [ { resource: 'Param',
// field: 'id',
// message: 'id required',
// code: 'missing_field' },
// { resource: 'Param',
// field: 'nick',
// message: 'expect string, but got number',
// code: 'invalid' },
// { resource: 'Param',
// field: 'date',
// message: 'should be "YYYY-MM-DD" date format string',
// code: 'invalid' },
// { resource: 'Param',
// field: 'age',
// message: 'expect number, but got string',
// code: 'invalid' },
// { resource: 'Param',
// field: 'sex',
// message: 'expect string, but got number',
// code: 'invalid' },
// { resource: 'Param',
// field: 'sid',
// message: 'should match /^\d+$/',
// code: 'invalid' },
// { resource: 'Param',
// field: 'unit',
// message: 'should match one of ["y", "m", "d", "w"]',
// code: 'invalid' },
// { resource: 'Param',
// field: 'uid',
// message: 'should be digital',
// code: 'invalid' } ]
$ node benchmark.js
rules pass: {id: p.Id} x 5,369,593 ops/sec ±3.41% (91 runs sampled)
rules pass: {id: {type: p.Id}} x 3,280,905 ops/sec ±4.18% (92 runs sampled)
rules pass: {id: {idId: true}} x 3,668,805 ops/sec ±1.60% (95 runs sampled)
rules pass: {date: p.Date} x 3,039,691 ops/sec ±1.56% (94 runs sampled)
rules pass: {date: {type: p.Date}} x 3,155,415 ops/sec ±1.39% (96 runs sampled)
rules pass: {date: {isDate: true}} x 3,165,767 ops/sec ±1.21% (96 runs sampled)
rules pass: {time: p.DateTime} x 3,035,140 ops/sec ±1.07% (92 runs sampled)
rules pass: {time: {type: p.DateTime}} x 3,201,006 ops/sec ±1.51% (93 runs sampled)
rules pass: {time: {isDateTime: true}} x 3,249,725 ops/sec ±0.69% (96 runs sampled)
rules pass: {age: "number"} x 5,065,678 ops/sec ±1.03% (92 runs sampled)
rules pass: {age: {type: "number"}} x 4,984,908 ops/sec ±3.26% (90 runs sampled)
rules pass: {nick: "string"} x 4,194,690 ops/sec ±0.73% (97 runs sampled)
rules pass: {nick: {type: "string"}} x 4,124,614 ops/sec ±0.99% (91 runs sampled)
rules pass: {not_exists: "string", required: false} x 986,325 ops/sec ±4.45% (89 runs sampled)
rules pass: {age: /^\d+$/} x 3,076,511 ops/sec ±1.20% (93 runs sampled)
rules pass: {age: {type: /^\d+$/}} x 3,112,817 ops/sec ±4.81% (88 runs sampled)
rules pass: {age: {type: /^\d+$/, message: "should be digital"}} x 3,289,649 ops/sec ±3.47% (93 runs sampled)
rules fail: {age: {type: /^\d+$/}} x 2,229,454 ops/sec ±2.49% (88 runs sampled)
rules fail: {age: {type: /^\d+$/, message: "should be digital"}} x 2,384,240 ops/sec ±3.62% (95 runs sampled)
rules pass: {unit: ["y", "m", "w", "d"]} x 3,782,871 ops/sec ±4.65% (88 runs sampled)
rules pass: {unit: {type: ["y", "m", "w", "d"]}} x 4,322,054 ops/sec ±1.01% (95 runs sampled)
rules fail: {unit: ["y", "m", "w", "d"]} x 2,504,761 ops/sec ±1.56% (90 runs sampled)
Fastest is rules pass: {age: {type: "number"}}
$ git summary
project : parameter
repo age : 6 weeks
active : 5 days
commits : 16
files : 13
authors :
16 fengmk2 100.0%
(The MIT License)
Copyright (c) 2013 fengmk2 <fengmk2@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
A parameter verify tools.
The npm package parameter receives a total of 737 weekly downloads. As such, parameter popularity was classified as not popular.
We found that parameter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.