Skip to content

AlienCreations/node-validator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-validator

Validator for Alien Creations node apps

Install

$ yarn add @aliencreations/node-validator

Bundled Dependencies

Usage

validate accepts two payloads - one is the schema and one is the payload. If the payload does not satisfy the schema, the function will throw an error.

Please see node-error for a complete list of validation errors.

const {
  isArrayOf,
  isObjectOf,
  isOptional,
  isRequired,
  label,
  prr
} = require('@aliencreations/node-validator');


const accountType = label('accountType', isObjectOf({
  accountName   : isRequired(prr.isStringOfLengthAtMost(30)),
  accountNumber : isRequired(prr.isPositiveNumber)
}));

const validateUser = label('validateUser', isObjectOf({
  firstName : isRequired(prr.isStringOfLengthAtMost(30)),
  lastName  : isRequired(prr.isStringOfLengthAtMost(30)),
  accounts  : isOptional(isArrayOf(accountType))
}));

// Example
try {
  validateUser({ 
    firstName : 'Joe',
    lastName  : 'Swanson',
    accounts  : [
      { 
        name   : 'My Main Account',
        number : 12345
      }
    ]
 });
} catch (e) {
  // threw because accounts -> [0] -> name is unsupported, should have been accountName
}

Changelog

1.0.0
  • Initial commit
1.0.1
  • Tree-shake
1.0.2
  • Update jcvd library
1.0.3
1.0.4
  • Update README
1.0.5
1.0.6
  • Update README

About

Validator for Alien Creations node apps.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages