rocklobster-in / swv

Schema-Woven Validation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Schema-Woven Validation

This is a JavaScript implementation of Schema-Woven Validation (SWV), the next generation of web form validation mechanism.

Installation

npm install @contactable/swv --save

Validating user input based on schema

import { validate } from '@contactable/swv';

// schema: SWV schema object
// formData: FormData object
const result = validate( schema, formData );

for ( const [ field, { error } ] of result ) {
	if ( undefined !== error ) {
		// Add validation error message to the field
	}
}

About

Schema-Woven Validation.

License:MIT License


Languages

Language:JavaScript 100.0%