npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kissmybutton/schema-guard

v1.0.1

Published

An easy schema like object validator

Downloads

9

Readme

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

Property | Type | Required | Description -------- | ---- | -------- | ----------- type | String | ✓ | The type definition of the attribute type required | Array | | If 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'] validate | Function | | If 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. minimum | Number | | When 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 maximum | Number | | When 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 units | Object | | If 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