A validation plugin for Aurelia that uses a fluent API.
this.validation = validation.on(this)
.ensure('awesomeLevel')
.isGreaterThan(9000)
.ensure('readMe')
.isNotEmpty()
.hasMinLength(5)
.ensure('usage')
.isEqualTo('simple');
To keep up to date on Aurelia, please visit and subscribe to the official blog. If you have questions, we invite you to join us on our Gitter Channel.
##Documentation Important note: both the documentation and the samples reflect the latest version of the sources, not the latest released version! Watch the live samples. (Work-in-progress)
- Installing the plugin
- Getting started
- Validation types
- isNotEmpty()
- containsNoSpaces()
- containsOnly(regex)
- containsOnlyAlpha()
- containsOnlyAlphaOrWhitespace()
- containsOnlyAlphanumerics()
- containsOnlyAlphanumericsOrWhitespace()
- containsOnlyDigits()
- containsOnlyLetters()
- containsOnlyLettersOrWhitespace()
- hasLengthBetween(minLength, maxLength)
- hasMinLength(minLength)
- hasMaxLength(maxLength)
- isBetween(minValue, maxValue)
- isEmail()
- isEqualTo(otherValue, otherValueLabel)
- isGreaterThan(minValue)
- isGreaterThanOrEqualTo(minValue)
- isLessThan(maxValue)
- isLessThanOrEqualTo(maxValue)
- isIn(collection)
- isNumber()
- isStrongPassword(minimumComplexityLevel)
- isURL()
- isNotEqualTo(otherValue, otherValueLabel)
- matches(regex)
- passes(customFunction, threshold)
- passesRule(validationRule)
- withMessage(message)
- Logical Operators
- onValidate(validationCallback, failureCallback)
- Alternative validation setup
- I18N
- Custom Validation
- Visualization (Validate custom attribute)
- ValidationResult
- Configuration
This library isn't used by Aurelia. It is an optional plugin.
This library can be used in the browser.
To build the code, follow these steps.
-
Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
-
From the project folder, execute the following command:
npm install
-
Ensure that Gulp is installed. If you need to install it, use the following command:
npm install -g gulp
-
To build the code, you can now run:
gulp build
-
You will find the compiled code in the
dist
folder, available in three module formats: AMD, CommonJS and ES6. -
See
gulpfile.js
for other tasks related to generating the docs and linting.
To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:
-
Ensure that the Karma CLI is installed. If you need to install it, use the following command:
npm install -g karma-cli
-
Ensure that jspm is installed. If you need to install it, use the following commnand:
npm install -g jspm
-
Install the client-side dependencies with jspm:
jspm install
-
You can now run the tests with this command:
karma start