node-document-validator-schema
v0.1.0
Published
Validator adapter `schema` for `node-document` ODM for Node.js.
Downloads
2
Readme
NODE-DOCUMENT-VALIDATOR-SCHEMA
Validator adapter schema for node-document ODM for Node.js.
Installation
$ npm install node-document-validator-schema
Usage
Basic:
var Validator = require('node-document-validator-schema');
var validator = new Validator();
var data = {
foo: "foo",
bar: 123,
baz: undefined
};
var schema = {
foo: {
type: "string",
minLength: 4
},
bar: {
type: "number"
},
baz: {
required: true
}
};
validator.validate(data, schema, function(err, errors, valid) {
console.log("Valid: %s \nErrors:\n", valid, errors);
});
For details; see node-document.
Test
Local tests:
$ make test
License
Released under the MIT license.
Copyright (c) Jonas Grimfelt