Git Product home page Git Product logo

validator.js's Introduction

validator.js is a library of string validators and sanitizers.

tests

Server-side usage

Install the library with npm install validator

var validator = require('validator');

validator.isEmail('[email protected]'); //=> true

Client-side usage

The library can be loaded either as a standalone script, or through an AMD-compatible loader

<script type="text/javascript" src="validator.min.js"></script>
<script type="text/javascript">
  validator.isEmail('[email protected]'); //=> true
</script>

The library can also be installed through bower

$ bower install validator-js

Validators

  • equals(str, comparison) - check if the string matches the comparison.
  • contains(str, seed) - check if the string contains the seed.
  • matches(str, pattern [, modifiers]) - check if string matches the pattern. Either matches('foo', /foo/i) or matches('foo', 'foo', 'i').
  • isEmail(str) - check if the string is an email.
  • isURL(str [, options]) - check if the string is an URL. options is an object which defaults to { protocols: ['http','https','ftp'], require_tld: true, require_protocol: false }.
  • isIP(str [, version]) - check if the string is an IP (version 4 or 6).
  • isAlpha(str) - check if the string contains only letters (a-zA-Z).
  • isNumeric(str) - check if the string contains only numbers.
  • isAlphanumeric(str) - check if the string contains only letters and numbers.
  • isHexadecimal(str) - check if the string is a hexadecimal number.
  • isHexColor(str) - check if the string is a hexadecimal color.
  • isLowercase(str) - check if the string is lowercase.
  • isUppercase(str) - check if the string is uppercase.
  • isInt(str) - check if the string is an integer.
  • isFloat(str) - check if the string is a float.
  • isDivisibleBy(str, number) - check if the string is a number that's divisible by another.
  • isNull(str) - check if the string is null.
  • isLength(str, min [, max]) - check if the string's length falls in a range.
  • isUUID(str [, version]) - check if the string is a UUID (version 3, 4 or 5).
  • isDate(str) - check if the string is a date.
  • isAfter(str [, date]) - check if the string is a date that's after the specified date (defaults to now).
  • isBefore(str [, date]) - check if the string is a date that's before the specified date.
  • isIn(str, values) - check if the string is in a array of allowed values.
  • isCreditCard(str) - check if the string is a credit card.
  • isISBN(str [, version]) - check if the string is an ISBN (version 10 or 13).
  • isJSON(str) - check if the string is valid JSON (note: uses JSON.parse).
  • isMultibyte(str) - check if the string contains one or more multibyte chars.
  • isAscii(str) - check if the string contains ASCII chars only.
  • isFullWidth(str) - check if the string contains any full-width chars.
  • isHalfWidth(str) - check if the string contains any half-width chars.
  • isVariableWidth(str) - check if the string contains a mixture of full and half-width chars.

Sanitizers

  • toString(input) - convert the input to a string.
  • toDate(input) - convert the input to a date, or null if the input is not a date.
  • toFloat(input) - convert the input to a float, or NaN if the input is not a float.
  • toInt(input [, radix]) - convert the input to an integer, or NaN if the input is not an integer.
  • toBoolean(input [, strict]) - convert the input to a boolean. Everything except for '0', 'false' and '' returns true. In strict mode only '1' and 'true' return true.
  • trim(input [, chars]) - trim characters (whitespace by default) from both sides of the input.
  • ltrim(input [, chars]) - trim characters from the left-side of the input.
  • rtrim(input [, chars]) - trim characters from the right-side of the input.
  • escape(input) - replace <, >, & and " with HTML entities.
  • whitelist(input, chars) - remove characters that do not appear in the whitelist.
  • blacklist(input, chars) - remove characters that appear in the blacklist.

Strings only

This library validates and sanitizes strings only. All input will be coerced to a string using the following rules

  • Call the toString property if available.
  • Replace null, undefined or NaN with an empty string.
  • Everything else is coerced with input + ''.

Extensions

You can add your own validators using validator.extend(name, fn)

validator.extend('isFinite', function (str) {
    return isFinite(str);
});

Note that the first argument will be automatically coerced to a string.

validator.isFinite(12345); // => true
validator.isFinite('foo'); // => false

Deprecations

Version 3 of the library deprecated some functionality

  • XSS sanitizer: Here's why. Use Google Caja instead.
  • Entity encoding: Use fb55/entities or substack/node-ent.
  • Validator chaining: The API was too unintuitive. I'd prefer to let users create their own higher-level patterns from the provided building blocks.

If you're migrating from version 1.x or 2.x, check out the migration guide.

Tests

  • make test - run the test suite.
  • make test V=1 - run the test suite with added verbosity.
  • make test TEST=pattern - run tests that match a pattern.
  • make coverage - run a coverage analysis tool.
  • make lint - run a lint tool.

License (MIT)

Copyright (c) 2014 Chris O'Hara <[email protected]>

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.

validator.js's People

Contributors

chriso avatar tbasse avatar ctavan avatar conorgil avatar wankdanker avatar talentedmrjones avatar arb avatar pchw avatar austinpray avatar vendruscolo avatar andyburke avatar skotchio avatar chuyeow avatar cjroth avatar fnakstad avatar garrensmith avatar metellus avatar jack12816 avatar chesles avatar jlank avatar jondum avatar jmoyers avatar lintoka avatar tylkomat avatar mikermcneil avatar nealpoole avatar niklasf avatar vladimir-polyakov avatar orls avatar cabbiepete avatar

Watchers

Jin Seta avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.