Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 598 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 598 Bytes

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
	}
}