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

tv4-via-typenames

v0.1.5

Published

Validation against schemas referenced by type names.

Downloads

16

Readme

tv4-via-typenames

NPM version Build Status via Travis CI Coverage Status

Overview

tv4-via-typenames provides a typename-oriented schema loading and validation system. It has a minimal interface for validating typed data against JSON-schemas from like-named files. It wraps the tv4 module, and validates data against draft-4 JSON schema.

tv4-via-typenames recursively loads, validates, and registers referenced schema, and all of their referenced schema, both those referenced directly and indirectly. Schema are validated against the draft-4 standard. tv4-via-typenames registers only correct schema, and returns errors for any incorrect schema.

tv4-via-typenames works for either client or server.

A Complete Example for Node

See the separate module tv4-via-typenames-node.

Capabilities not Supported

tv4-via-typenames does not:

  • retrieve remote schema by following remote http-based IDs.
  • support customizing the mapping between schema IDs and type names.
  • support using missing schema (all schema must be present).

API

These are the main components of the API. You can find the full API in the TypeScript declaration file for this module.

The function signatures are given with their TypeScript type annotations. These examples assume that tv4-via-typenames has been loaded into variable tv4vtn.

  • configure(params : ISchemasConfig) : void
    configure this module with your function that retrieves schemas.
    In tv4-via-typenames-node, getSchemaFromTypename reads schema files from the local file system.
    For a client, getSchemaFromTypename might request schemas from a server.
    tv4vtn.configure({getSchemaFromTypename: myGetSchemasFunction}});
  • loadSchemaDraftV4() : Promise<ISchema>
    Loads the Draft-4 standard schema. This must follow the call to configure(), and complete before using any other functions. Returns a promise that resolves with the schema, or rejects with an error.
    let v4Promise = tv4vtn.loadSchemaDraftV4();
  • loadRequiredSchema(typenames: string | string[]) : Promise<ILoadSchemaResultIndex>
    Find the schemas with the given typenames, and all referenced schema, both directly and indirectly referenced. When this succeeds, all schema required by the requested types have been loaded and validated. You may call this function as needed. A schema will only be loaded and registered once, regardless of how many times it is referenced. Don't call this function until loadSchemaDraftV4() has resolved. Returns a promise that resolves with an index of the schema load results, along with any errors encountered, or rejects with an error.
    let loadPromise = tv4vtn.loadRequiredSchema(['Person', 'UUID']);
  • validate(typename: string, obj: any) : TV4MultiResult
    Validate the given object against the schema for given typename. You may call validate with a given typename after a loadRequiredSchema() has loaded that typename. The typename may be for one of the indirectly referenced types.
    let validity = tv4vtn.validate('EmailAddress', user_entered_email_address);

See the tests for more examples of usage.

Conventions

  • The name of the type (TYPENAME) of a data object is used as the key for locating all schema-related data.
  • Schema names match the TYPENAME.
  • Schema IDs are: urn:TYPENAME.schema.json#
  • The $schema field is: http://json-schema.org/draft-04/schema#
  • All references to other schema use the same conventions. So a $ref field contains a schema ID as above.

Install

npm install tv4-via-typenames

You may use this module directly as a commonjs module or as an amd module.

Dependencies

  • es6
  • es6 promises
  • tv4

Installing as a Dependency of Another Module

If you install this package as a dependency of another module, it will install its TypeScript declaration files into that module's ./typings directory, using the npm script npm-postinstall.

Build Setup

You only need to do this if you will be building (developing) tv4-via-typenames.

Simple Setup

This module is built with TypeScript 1.5, so you must have it installed in order to build. npm install will install TypeScript and tsd locally. See http://www.typescriptlang.org/#Download

(You do not need TypeScript in order to use this module, as the code that makes up the distribution is all javascript.)

Start by cloning from git:

git clone [email protected]:psnider/tv4-via-typenames.git

This code expects that ./commonjs is on node's load path:

NODE_PATH=$(NODE_PATH):./commonjs

And prepare your new repo for building with:

make setup

Full Environment Setup

See our full instructions for setting up a MEAN stack + TypeScript enviroment, and setup the parts you want to use. We use Atom as our editor.

Build

To build:

make build

To force a clean build:

make clean build

To build and test:

make

Test

npm install will install mocha and chai locally.

Then run the tests:

make test