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

viceroy-schema

v0.0.8

Published

Viceroy-ORM's schema implementation

Downloads

5

Readme

Viceroy Schema

Viceroy Schema is a schema implementation developed for the (soon to be released) Viceroy ORM.

Designed as a standalone package to allow anyone to use schemas without needing an entire ORM.

Use it with node or in the browser using browserify.

npm install viceroy-schema

NPM version

Browser Support

Example

var schema = require('viceroy-schema');

// create a schema for a person object.
var s = schema.create({
  name: {
    first: String,
    last: String
  },
  born: Date,
  sex: { type: String, match: { in: ['M', 'F'] }}
});

// create a person object containing some guy
// named mike.
var mike = {
  name: {
    first: 'Mike',
    last: 'Wright'
  },
  born: new Date(1982, 4, 7),
  sex: 'M'
};

// validate mike against our schema.
s.validate(mike, function(err) {
  // since mike is a valid person object we
  // don't get any errors.
  err => null;
});

// now lets create a person object for some
// lady named sue.
var sue = {
  name: {
    first: 'Sue',
    last: 0
  },
  born: '1971, 23, 14',
  sex: 'female'
};

// validate sue against our schema.
s.validate(sue, function(err) {
  // sue doesn't pass validation.
  // The err object contains paths to
  // each schema rule error.
  err => {
    name: {
      last: 'Must be an instance of String'
    },
    born: 'Must be an instance of Date',
    sex: 'Must be one of the following values: \'M\', \'F\''
  };
});

Possible Schema Rules

Below is an example of the possible fields in a schema rule set.

{
  // Valid types
  field: String,
  field: Number,
  field: Boolean,
  field: Date,
  field: RegExp,
  field: Object,
  field: Array,
  field: Buffer,
  
  // Valid rules
  field: Type, // Shorthand for { type: Type }.
  field: { type: Type }, // value must be a an instance of 'Type'.
  field: { type: Type, match: /pattern/ }, // Value must match /pattern/.
  field: { type: Type, match: { lt: 10 }}, // Value must be less than 10.
  field: { type: Type, match: { lt: 'abc' }}, // Value must be less than 'abc'.
  field: { type: Type, match: { gt: 10 }}, // Value must be greater than 10.
  field: { type: Type, match: { gt: 'abc' }}, // Value must be greater than 'abc'.
  field: { type: Type, match: { min: 10 }}, // Value must be longer than 10 chars.
  field: { type: Type, match: { max: 10 }}, // Value must be shorter than 10 chars.
  field: { type: Type, match: { length: 10 }}, // Value must be 10 chars in length.
  field: { type: Type, match: { in: ['a', 'b'] }}, // Value must be 'a' or 'b'.
  field: { type: Type, match: { notIn: ['a', 'b'] }}, // Value must not be 'a' or 'b'.
  field: { type: Type, match: { exists: true }}, // Value must exist.
  field: { type: Type, match: function(val) { return new Error('err'); } }, // Value must not cause fn to return an error.
  field: { type: Type, match: function(val, cb) { cb(new Error('err')); } }, // Value must not cause fn to callback with an error.
  
  // Nest rules within sub objects
  field: {
    subField: String // All of the above rule formats can be used here...
  },
  
  // Require that value or sub objects
  // be wrapped within an array.
  field: [String], // Value must be an array of strings.
  field: [{ // Value must be an array of sub objects.
    subField: String // All of the above rule formats can be used here...
  }],
  
  // schema options.
  $strict: true // disallow extra fields not in the schema.
}

Schema

schema(Object rules) => Schema s

Creates a new schema. The schema can be used to validate any object and deterime if it matches the rules within the schema.

The each rule within the schema must have a type. Valid types are:

  • String
  • Number
  • Boolean
  • Date
  • Buffer
  • RexExp
  • Object
  • Array

Note that Object can contain any object. Anything contained within the object will be ignored by the schema. Array will match any array, and its contents will also be ignored. These can be used as mixed types.

Rules can also have match conditions. These match conditions are optional.

Pattern Match

{ field: { type: String, match: /pattern/ }}

Will match a value matching the pattern /pattern/.

Exists

{ field: { type: String, match: { exists: true }}}

Will match a value if it exists. By default values can be undefined. Exists forces then to be present in order to pass validation.

Less Than

{ field: { type: String, match: { lt: 'abc' }}}
{ field: { type: Number, match: { lt: 10 }}}

The first example will match a value less than 'abc'. The second example will match a value less than 10.

Greater Than

{ field: { type: String, match: { gt: 'abc' }}}
{ field: { type: Number, match: { gt: 10 }}}

The first example will match a value greater than 'abc'. The second example will match a value greater than 10.

Minimun Length

{ field: { type: String, match: { min: 10 }}}

Will match a value longer or equal to 10 characters in length.

Maximum Length

{ field: { type: String, match: { max: 10 }}}

Will match a value shorter or equal to 10 characters in length.

Length

{ field: { type: String, match: { length: 10 }}}

Will match a value equal to 10 characters in length.

In

{ field: { type: String, match: { in: ['a', 'b'] }}}

Will match a value equal to 'a' or 'b'.

Not In

{ field: { type: String, match: { notIn: ['a', 'b'] }}}

Will match a value not equal to 'a' or 'b'.

Custom Validatiors

{ field: { type: String, match: function(val) { ... } }}
{ field: { type: String, match: function(val, cb) { ... } }}

If you need to do custom validation on a field a validation function can be passed as the match contition.

{ field: { type: String, match: function(val) { ... } }}

A validation function with a single argument will be passed the value of the field and is expected to return an error if validation fails. If nothing is returned then the value will pass validation.

{ field: { type: String, match: function(val, cb) { ... } }}

A validation function with a two arguments will be passed the value of the field and a callback. It will be is expected to callback with an error if validation fails. If the callback is executed with no arguments then the value will pass validation.