Node.js的验证库


75

是否有一个用于node.js的好的验证框架,该框架可以验证以下变量:

  • 如果其类型为字符串,日期,数字等
  • 最大和最小长度
  • 电子邮件,电话
  • 等等...

1
因为问题已经解决,所以我在评论我的答案,来自hapi的joi.js是一个非常广泛的javascript模型框架。它拥有您想要的一切,还有更多。伟大的文档和伟大的用户在生产中使用它
Srivathsa Harish Venkataramana

我鼓励您检查contextable.js框架,该框架提供基于架构的验证和错误处理。这是用于Node.js的ActiveRecord。
xpepermint

Answers:


86

我最近发现了chriso的node-validator

var check = require('validator').check,
    sanitize = require('validator').sanitize

//Validate
check('test@email.com').len(6, 64).isEmail();       //Methods are chainable
check('abc').isInt();                               //Throws 'Invalid integer'
check('abc', 'Please enter a number').isInt();      //Throws 'Please enter a number'
check('abcdefghijklmnopzrtsuvqxyz').is(/^[a-z]+$/);

//Sanitize / Filter
var int = sanitize('0123').toInt();                  //123
var bool = sanitize('true').toBoolean();             //true
var str = sanitize(' \s\t\r hello \n').trim();      //'hello'
var str = sanitize('aaaaaaaaab').ltrim('a');        //'b'
var str = sanitize(large_input_str).xss();
var str = sanitize('&lt;a&gt;').entityDecode();     //'<a>'

6
是的,但是node-validator专注于字符串验证。因此,请检查变量的类型,例如“它的类型是否为Date?”。是不是这个库是为
sebpiq 2013年

2
这是一种耻辱。我真的很喜欢他们关于验证应该如何工作的想法,我认为这是一个方便的方法,但是我希望有一种方法可以进行更严格的验证。
加斯顿·桑切斯

我刚刚发布了这个新的验证框架:github.com/wilkerlucio/composed-validations
Wilker Lucio

我找不到如何将验证器用于可选参数?节点验证器是否提供此功能。
JehandadK 2014年

1
我检查了所有这些内容,但根本没有发现它们具有表现力,我写了自己的npmjs.org/package/indicative
Aman Virk

15

我想要ruby on rails和cakephp样式验证。我知道这是我会反复使用的东西,所以我制作了一个快速的npm模块:https ://npmjs.org/package/iz

它在语义上就像茉莉一样读取,并且可以在客户端或服务器端使用。这意味着它支持commonjs和amd以及通过JSON传递的验证规则。

它已经过很好的单元测试,没有生产依赖性,并且范围被锁定为仅用于验证。我们现在似乎有一个小社区。欢迎提出想法,反馈和要求。

当前库函数:

iz.alphaNumeric(*);               // Is number or string(contains only numbers or strings)
iz.between(number, start, end);   // Number is start or greater but less than or equal to end, all params numeric
iz.blank(*);                      // Empty string, undefined or null
iz.boolean(*);                    // true, false, 0, 1
iz.cc(*);                         // Luhn checksum approved value
iz.date(*);                       // Is a data obj or is a string that is easily converted to a date
iz.decimal(*);                    // Contains 1 decimal point and potentially can have a - at the beginning
iz.email(*);                      // Seems like a valid email address
iz.extension(ob1, ob2);           // If obj2's methods are all found in obj1
iz.fileExtension(arr, value);     // Checks if the extension of value is in arr. An obj can be provide, but must have indexOf defined.
iz.fileExtensionAudio(value);     // Check against mp3, ogg, wav, aac
iz.fileExtensionImage(value);     // Check against png, jpg, jpeg, gif, bmp, svg, gif
iz.inArray(arr, value);           // If * is in the array
iz.int(*, bool (optional));       // Is an int. If the 2nd variable is true (false by default) a decimal is allowed
iz.ip(str);                       // str resembles an IPV4 or IPV6 address
iz.minLen(val, min);              // val (str or arr) is greater than min
iz.maxLen(val, max);              // val (str or arr) is shorter than max
iz.multiple(num, mult);           // Number is multiple of another number
iz.number(*);                     // Is either an int or decimal
iz.ofType(obj, typeName);         // If it is a named object, and the name matches the string
iz.phone(str, canHaveExtension?); // Is an american phone number. Any punctuations are allowed.
iz.postal(*);                     // Is a postal code or zip code
iz.ssn(*);                        // Is a social security number

10

Node-validator是一个字符串验证,过滤和清理方法的库。

所以,如果你想拥有数字和阵列更好的支持,您可以尝试Chai.js。这里有一些例子:

var expect = require('chai').expect;
try {
    expect([1, 2, 3]).to.have.length.below(4);
    expect(5).to.be.within(3,6);
    expect('test').to.have.length(4);
} catch (e) {
    // should not occur
}

11
没有冒犯,但是拥有对我来说似乎毫无用处。我在写诗还是程序?if (the("string").I.want.to.validate.is.shorter.than(123) === false) { console.log('The string is too long'); }
Savas Vedova 2014年

6
因为Chai旨在用于编写单元测试,所以这里存在超长且无用的方法调用。
TinyTimZamboni 2015年

@SavasVedova,两个都写。
AJB

6

我认为这是架构模块要执行的操作。请注意,它被标记为“开发中”(标记为v0.1a)。我没有亲自尝试过,但是从README中显示的示例来看,它看起来还不错。


3

不是在变量级别,而是在函数参数级别:

http://github.com/torvalamo/argtype.js

当前需要将日期作为“对象”类型传递。这绝对是我已经忘记的东西,将被列入待办事项清单。;)

不支持特定的最大和最小长度,并且可能不会实现(但谁知道)。电子邮件,电话以及所有可通过正则表达式检查的内容。请参阅github页面上的示例,其中包括一个(简单的)正则表达式示例。



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.