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 🙏

© 2025 – Pkg Stats / Ryan Hefner

skeemas

v1.2.5

Published

Lightweight JSON Schema valiation

Downloads

546

Readme

skeemas

Comprehensive JSON Schema (drafts 3 and 4) validation.

Installation

npm install skeemas --save

Basic Validation

skeemas.validate(subject, schema[, options])

var skeemas = require('skeemas');

skeemas.validate('foo', { type:'string' }).valid; // true
skeemas.validate(10000, { type:'string' }).valid; // false
skeemas.validate(10000, { type:'number' }).valid; // true

// Result contains an array of errors
var result = skeemas.validate('test', { enum:['foobar'], minLength:5 });
result.valid; // false
result.errors; // array with 2 error objects

// Pass the "breakOnError" option to stop processing on the first error
var result = skeemas.validate('test', { enum:['foobar'], minLength:5 }, { breakOnError:true });
result.valid; // false
result.errors; // array with 1 error object

var result = skeemas.validate({
    foo: 'bar',
    nested: {
        stuff: [1,2,3],
        ignoreMe: 'undeclared property'
    }
}, {
    properties: {
        foo: { type:'string' },
        nested: {
            properties: {
                stuff: {
                    type: 'array',
                    items: { type:'integer' }
                }
                // We aren't going to declare `ignoreMe`. To disallow extra 
                // props we could set `additionalProperties:false`.
            }
        }
    }
}); 
result.valid; // true
assert.deepEqual(result.cleanInstance, {
    foo: 'bar',
    nested: {
        stuff: [1,2,3]
        // notice the `ignoreMe` property is removed from `cleanInstance`
    }
});

For more information about constructing schemas see http://json-schema.org/ or the wonderful guide at http://spacetelescope.github.io/understanding-json-schema/index.html

Adding Schemas

Skeemas supports validation by schema id and refrences between schemas via the $ref property:

// Create an instance of a validator
var validator = require('skeemas')();

// Add schemas to the validator
validator.addRef({ type:'string', pattern:'^[a-z0-9]+$' }, '/identifier');

// Validate by uri/id
validator.validate('foo123', '/identifier').valid; // true

// Use a $ref reference in other schemas
validator.validate(user, { 
    type: 'object',
    properties: {
        id: { '$ref':'/identifier' },
        name: { type:'string' }
    } 
}).valid; // true

Related Modules

Development

Our tests are running the JSON Schema test suite at https://github.com/json-schema/JSON-Schema-Test-Suite. Those tests are referenced as a submodule and therefore dev setup is a little non-standard.

# clone the repo

# install dependencies from npm
npm install

# install the test suite
git submodule init
git submodule update

# run the tests
npm test

Feature Status

  • [X] Full Validation (all errors)
  • [X] Quick Validation (first error)
  • [X] Instance cleaning
  • [X] Manual reference additions
  • [X] Validate by reference
  • [ ] Missing reference resolution
  • [ ] Custom format validation
  • [ ] Custom attribute validation
  • [X] Plugins
  • [X] JSON-Schema draft 03 and 04 feature support
    • Ignored schema attributes
      • $schema
      • title
      • description
      • default
    • [X] References
      • [X] id
      • [X] definitions
      • [X] $ref
    • [X] Validations by type
      • [X] any
        • [X] type
        • [X] enum
        • [X] extends
        • [X] allOf
        • [X] anyOf
        • [X] oneOf
        • [X] not
        • [X] disallow
        • [X] required
        • [X] format
      • [X] array
        • [X] items
        • [X] additionalItems
        • [X] minItems
        • [X] maxItems
        • [X] uniqueItems
      • [X] boolean
      • [X] null
      • [X] number, integer
        • [X] multipleOf
        • [X] divisibleBy
        • [X] minimum
        • [X] maximum
        • [X] exclusiveMinimum
        • [X] exclusiveMaximum
      • [X] object
        • [X] properties
        • [X] patternProperties
        • [X] additionalProperties
        • [X] required
        • [X] dependencies
        • [X] minProperties
        • [X] maxProperties
        • [X] dependencies
      • [X] string
        • [X] minLength
        • [X] maxLength
        • [X] pattern
        • [X] format
          • [X] date-time
          • [X] date
          • [X] time
          • [X] utc-millisec
          • [X] email
          • [X] hostname
          • [X] host-name
          • [X] ip-address
          • [X] ipv4
          • [X] ipv6
          • [X] uri
          • [X] regex
          • [X] color
          • [X] style
          • [X] phone