simple-schema
v1.1.0
Published
Simple object validation framework
Downloads
300
Readme
simple-schema
Simple object validation framework with no dependencies.
Installation
via npm:
$ npm install simple-schema
Usage
Property declarations can specify a property name or a path to a property using dot-notation (nested.object.prop2
).
Supported property options:
required
: Boolean If this field is requiredtype
: String, Array A lower*cased constructor name ('object', 'regexp', 'array' etc.) and also 'null' and 'undefined'. Setting this property to an array of values will look for one of the values.regexp
: RegExp Regular expression to run on property valuefunction
: Function, String Function to run withthis
being the object and property name as first argument. This parameter can also be specified as a string if you want to point to a function in the global scope (defined asglobal.fn = myFunc
)min
,max
: Number Depending on property type these options can specify:- string length
- numeric range
- array length
error
: Object Optional error propertiescode
: Any Error codemessage
: Any Error message
Running validation returns an array of errors, e.g. an empty array means success.
Example
var validate = require('simple-schema')
, assert = require('assert')
var schema = {
prop1: {
required: true,
type: 'string',
error: {
code: 'NOTASTRING',
message: 'It is not a string'
}
},
'nested.object.prop2': {
required: false
}
}
var myObject = {
prop1: 'str',
nested: {
object: {} // missing prop2 here
}
}
// validationResult will hold an array of errors or an empty array
var validationResult = validate(schema, myObject)
assert(validationResult.length === 0) // validation succeeded
Tests
You need mocha
.
make test
You can check code coverage report by running
make coverage
Coverage report will be in reports/lcov-report/index.html
file.
License
(The MIT License)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.