Advertise here

jQuery Plugins Tagged ‘data validation’

Superstruct – Simple & Composable Way to Validate Data in Javascript

December 04, 2017     665     Validation
Superstruct – Simple & Composable Way to Validate Data in Javascript

Superstruct makes it easy to define interfaces and then validate JavaScript data against them. It's type annotation API was inspired by Typescript, Flow, Go, and GraphQL, giving it a familiar and easy to understand API.

Read More »

Validate.js – Simple Library for Data Validation

October 24, 2015     1417     Validation
Validate.js – Simple Library for Data Validation

Validate.js is a simple javascript library for data validation. Here are validation functions.

  • String : isString, minLength(min), maxLength(max), length(min, max), regex(reg)
  • Number: isNumber, minNumber, maxNumber, between
  • Date: isDate, minDate(min), maxDate(max), between(min, max)
  • Bool: isTrue, isFalse
  • Util: isRequired, isEmail, isCep

Read More »

Validate.js – Declarative Validation with Javascript

July 11, 2015     4435     Validation Bootstrap
Validate.js – Declarative Validation with Javascript

Validate.js provides a declarative way of validating javascript objects.

The goal of validate.js is to provide a cross framework and cross language way of validating data. The validation constraints can be declared in JSON and shared between clients and the server.

Read More »

xtypejs – Elegant, highly efficient data validation for JavaScript

July 01, 2015     1088     Validation
xtypejs – Elegant, highly efficient data validation for JavaScript

xtype.js is an elegant, highly efficient data validation for JavaScript.

Features

  • Provides concise, performant, readable, data and type validation for JavaScript, using close to 40 highly efficient, data-validating pseudo types.
  • Improves application efficiency and readability by unifying the most basic but common data and type validations in JavaScript apps, into single, concise, highly optimized operations.

Read More »