Package Exports
- @smallwins/validate
- @smallwins/validate/assert
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@smallwins/validate) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@smallwins/validate
Parameter validation for builtins and custom types. Accepts params
and a schema
and returns an array of Error
s or false
.
var validate = require('@smallwins/validate')
function hi(params, callback) {
var schema = {
'name': {required:true, type:Object},
'name.first': {required:true, type:String},
'name.last': {required:false, type:String}
}
var errors = validate(params, schema)
if (errors) {
callback(errors)
}
else {
callback(null, 'hi ' + params.first)
}
}
// logs: null, hi brian
hi({name:{first:'brian', last:'leroux'}}, console.log)
// logs: [ [ReferenceError: missing required param name.first] ]
hi({name:{}}, console.log)
💫 considerations
- For testing an
Object
that presumably came from a JSON payload - Thusly, primarily concerned with JSON value types:
Object
,String
,Number
,Array
andBoolean
- Custom types are easily supported
- Extra custom types bundled:
Email
,ISO
,DateRange
andUUID
- Designed to test keys and nested keys
- Optionally validate
required
- Optionally validate
min
andmax
forString
,Number
andArray
builtin types (and easily implement for custom types / seeDateRange
for an example)
things it does not do 👎
- Mutate things with: serialization, formatting or defaults
- Nested subtypes (eg. the things in an array)
- Localized error messages
👊💕 further justifications
There are a tonne of libraries that do things like this but also do a whole lot more. This library deliberately limits its scope:
- Make errback style param contract validation super clean and simple
- Work primarily with builtins but easily extend
- Provide a nice API for usage (hence returning a falsy
null
instead of a truthy empty array[]
for the return value ofvalidate
and making the schema type validation minimalist without sacrificing capability.)
terse style example 👈👀👈
var validate = require('@smallwins/validate')
function sum(params, callback) {
// define our assumed params
var errors = validate(params, {
x: {required:true, type:Number},
y: {required:true, type:Number}
})
// err first! it'll be null w/ good input
callback(errors, errors? null : params.x + params.y)
}
sum({}, console.log)
// logs
// [[ReferenceError: missing required param x], [ReferenceError: missing required param y]] null
sum({x:1, y:2}, console.log)
// logs
// null 2
💌 api 💭🌟
validate(params, schema)
params
a plainObject
that we assume came from JSONschema
a plainObject
for describing the shape of the datacallback
(optional) Node style errbackfunction(err, params) {}
🔑 schema
required
eithertrue
orfalse
(or leave it out completely)type
can be one ofObject
,String
,Number
,Array
andBoolean
min
anyNumber
(or anything allowed by a custom type)max
anyNumber
(or anything allowed by a custom type)
📦 bundled custom types
UUID
Email
ISO
DateRange
Example usage of custom types:
var validate = require('@smallwins/validate')
var lambda = require('@smallwins/lambda')
// pull in the custom types
var UUID = require('@smallwins/validate/uuid')
var Email = require('@smallwins/validate/email')
var ISO = require('@smallwins/validate/iso')
var DateRange = require('@smallwins/validate/daterange')
// use the schema per builtins
function valid(event, callback) {
var schema = {
'params.id': {required:true, type:UUID},
'body.email': {required:true, type:Email},
'body.created': {required:true, type:ISO},
'body.duration': {required:true, type:DateRange, min:'2016/01/01', max:'2017/01/01'}
}
validate(event, schema, callback)
}
function save(event, callback) {
// performs save
callback(null, event)
}
exports.handler = lambda(valid, save)
Check out the examples for more on custom types and ranges (and the tests).