1.0.1 • Published 6 years ago

@kissmybutton/schema-guard v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

schema-guard

Build Status npm (scoped) Coverage Status Greenkeeper badge semantic-release PRs Welcome

A configurable schema object validator.

Installation

schema-guard is available as an npm package.

// with npm
npm install @kissmybutton/schema-guard

// with yarn
yarn add @kissmybutton/schema-guard

Usage

import Validator from '@kissmybutton/schema-guard';

const configuration = {
 width: {
   type: 'string'
 }
};

let validator = new Validator(configuration);
const objectToValidate = {
  width: '100px'
};

let validation = validator.validate(objectToValidate);


// Results in an objects with valid and errors properties

// validation.valid: true/false
// validation.errors: array of objects of type { message: string }

Development

git clone https://github.com/kissmybutton/schema-guard.git YOURFOLDERNAME
cd YOURFOLDERNAME

# Run npm install and write your library name when asked. That's all!
npm install

Start coding! package.json and entry files are already set up for you, so don't worry about linking to your main file, typings, etc. Just keep those files with the same name.

Features

  • Zero-setup. After running npm install things will setup for you :wink:

Allowed types

PropertyTypeRequiredDescription
typeStringThe type definition of the attribute type
requiredArrayIf defined, the required attribute is an array where the first item is the flag whether or not the attribute is required, and the second item of the array is the custom error message text: required: [true, 'is required']
validateFunctionIf defined, the validate attribute is a function that adds the ability of custom implementations for validations. Example: validate: { validator: function(v) { return /\d{4}/.test(v) }, message: 'my custom message'}, This will validate the input to be exactly 4 digits long.
minimumNumberWhen defining type of number or integer, you can define minimum value so that it validates that the value is equal or greater than the defined value
maximumNumberWhen defining type of number or integer, you can define maximum value so that it validates that the value is equal or smaller than the defined value
unitsObjectIf defined, you must also define an enum property which is an array of strings. Each item in that array is of type string and the given string that is to be validated must include at least one of the defined units.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

1.0.1

6 years ago

1.0.0

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.3

6 years ago

0.0.1

6 years ago