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-reporter

v7.1.0

Published

Report Tiny Validator tv4 results in usable formats

Downloads

673

Readme

tv4-reporter

npm version Downloads/month Build Status XO code style Code Climate DepShield Badge Known Vulnerabilities

Reporters to display usable Tiny Validator tv4 output of json-schema validation.

This module is used by various dependents to render tv4 validation result objects in a compact but highly readable (and possibly colourful) format. Functionality is tuned for both CLI output as well as plain-text or pre-formatted HTML/CSS.

Note: at this point this is not a 'validator' or 'test runner', nor is it a finished application. It is a library to use as dependency in tv4 based testers. Use plain tv4 and pass the result(s) to one of tv4-reporters helpers. If you are looking for a validator see one of the implementing tv4 wrappers for convenience (some linked below).

Features

  • Indented, tree-like display.
  • Single and multiple errors.
  • Optionally display summaries.
  • Recursive sub-errors (as generated by anyOf, oneOf etc).
  • Missing sub-schemas (optionally report as fail or pass reason).
  • Various output writer/coloriser modes using ministyle and miniwrite.

Examples

(possibly outdated)

  1. Examples of many different kind of errors in this Travis-Ci build.
  2. Bulk reporter with single error:

WebStorm example

Installation

$ npm install tv4-reporter --save-dev

Usage

Still very-much in flux so possibly outdated examples.

Minimal use case (likely this is spread over the implementing application):

// assemble the components
var tv4 = require('tv4');
var out = require('miniwrite').console();
var style = require('ministyle').ansi();
var reporter = require('tv4-reporter').getReporter(out, style);

// now validate
var result = tv4.validateMultiple(myValue, mySchema);
if (!result.valid || result.missing.length > 0) {
	// get data object (might get these in bulk/async from somewhere)
	var res = reporter.createTest(mySchema, myValue, 'my special test', true);

	// report error
	reporter.reportResult(res);

	// if you have a many results you can use bulk to print nicely with summaries
	reporter.reportBulk([res, res2, res3], [pass1, pass2]);

	// only totals
	reporter.reportTotals(3, 4);
}

Bulk reporting:

// if you have a many results you can use bulk to print nicely with summaries
reporter.reportBulk([res, res2, res3], [pass1, pass2]);

// only totals
reporter.reportTotals(3, 4);

For more API surface like (partial) reporter and various helpers see the exports in the main module. Also see the 'known dependants' for more examples.

Output

Report output and styling done via extensible mini-api's:

  • ministyle (bundled with plain, ansi, html/css etc + utils)
  • miniwrite (bundled with streaming console.log, line buffer, node-streams etc + utils)

Known dependents

  • grunt-tv4 (bulk validator with http lookup for grunt)
  • ~~chai-json-schema (assertion wrappers)~~ (update in progress)
  • (planned) a commandline validator (cued for extraction from grunt-tv4)
  • (planned) a json-schema assert()-ion (chai-json-schema without chai)

Future

  1. Output will likely be tuned over time.
  2. Current version is very functional but doesn't yet do anything specific for each validation rule type.

Release support matrix

| Release | Min Node ver. | Support | | ------- | ------------- | ----------- | | 1.x | 4.0.0 | Obsolete | | 2.x | 8.0.0 | Obsolete | | 3.x | 8.0.0 | Obsolete | | 4.x | 10.0.0 | Obsolete | | 5.x | 12.0.0 | Security | | 6.x | 14.0.0 | Current |

Release history

Build

Nothing much here as the code is still being extracted from the original projects.

~~Install development dependencies in your git checkout:~~

$ npm install

~~Build and run tests:~~

$ grunt

See the Gruntfile.js for additional commands.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Note: this is an opinionated module: please create a ticket to discuss any big ideas. Pull requests for bug fixes are of course always welcome.

License

Copyright (c) 2013 Bart van der Schoor

Licensed under the MIT license.