1.0.0 • Published 11 years ago

jungles-validation v1.0.0

Weekly downloads
4
License
-
Repository
-
Last release
11 years ago

Jungles Validation

You can find validators for jungles-validation at jungles-validators.

Api

var validators = require('jungles-validators');

var schema = {
  name: [ validators.required(), validators.string() ]
};

var data = {
  name: 'James'
};

var result = validate(data, schema);

result.valid(function (response) {
  // response: sanitized data
  // example: { name: 'James' }
});

result.invalid(function (errors) {
  // errors: object of arrays with errors
  // example: { name: [ 'String is required' ] }
});

Test

mocha.js and should.js is needed.

make test