web-dev-qa-db-ja.com

Node.jsの検証ライブラリ

Node.jsの次の変数を検証する優れた検証フレームワークはありますか?

  • 文字列、日付、数値などのタイプの場合
  • 最大および最小長
  • メール、電話
  • 等...
73
ajsie

私は最近、 chriso によって node-validator を発見しました。

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

//Validate
check('[email protected]').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>'
82
Baggz

Ruby on Railsとcakephpスタイルの検証。何度も何度も使うものだとわかっていたので、このクイックnpmモジュールを作成しました: https://npmjs.org/package/iz

それはジャスミンと同様に意味的に読み、クライアントまたはサーバー側で使用できます。これは、JSONを介して渡される検証ルールとともに、commonjsおよびAMDのサポートが付属していることを意味します。

ユニットテストは非常によく行われており、製品の依存関係はなく、スコープは検証のみにロックされています。今、小さなコミュニティができているようです。アイデア、フィードバック、プルリクエストはすべて歓迎します。

現在のライブラリ関数:

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
15
Parris

Node-validator は、文字列の検証、フィルタリング、およびサニタイズのメソッドのライブラリです。

したがって、NumbersとArraysのサポートを改善したい場合は、 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
}
9
Trantor Liu

これは schema モジュールが行うことを意図しているものだと思います。 「開発中」としてラベル付けされていることに注意してください(v0.1aとしてタグ付けされています)。私は自分で試したことはありませんが、READMEに示されている例からはかなり良く見えます。

5
intuited

変数レベルではなく、関数の引数レベルで:

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

現在、日付は「オブジェクト」タイプとして渡す必要があります。それは間違いなく私が忘れていたものであり、todoリストに載せるでしょう。 ;)

特定の最大および最小の長さはサポートされておらず、おそらく実装されません(しかし誰が知っていますか)。メール、電話、および正規表現で確認できるものすべて。 (単純な)正規表現の例を含むgithubページの例を参照してください。

3
Tor Valamo

valida をお勧めしますが、ドキュメントはありませんが、 examples を見ると理解するのは非常に簡単です。

Validaの機能は次のとおりです。

  • 消毒
  • 同期および非同期検証
  • グループ
  • 拡張可能
0
Eduardo Nunes