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

json-schema-hyper-component

v0.0.18

Published

JSON Schema hypermedia (URI templating)

Downloads

6

Readme

json-schema-hyper

Please note this library is not ready for production use.

JSON Hyper-Schema, as specified in the IETF Draft spec.

This component extends the behavior of JSON Schema, as implemented in json-schema-core, providing

  • parser classes for links (Links, Link).
  • a method for resolving link templates against an instance (resolveLinks)
  • link finder methods for typical cases (links.rel, links.mediaType, links.alternate), as well as generic links.find(fn) and links.select(fn)
  • addressability from the schema (e.g. schema.$('#/links/0'))
  • dereferencing JSON references used in either "links" itself or in individual links or link attributes, or in "media" subtrees.

Note that this component does not deal with aspects of the spec related to HTTP request/response, e.g. schema and targetSchema pre- and post- validation, setting Accept headers, instance correlation via HTTP response headers, etc. For this, see json-schema-agent.

Note also this component does not depend on JSON Schema validation, which is implemented as a separate core plugin (json-schema-valid, forthcoming).

Installation

component:

$ component install ericgj/json-schema-hyper

npm:

$ npm install json-schema-hyper-component

Example


var core = require('json-schema-core')
  , hyper = require('json-schema-hyper')
  , Schema = core.Schema

Schema.use(hyper);

var schema = new Schema().parse( schemaObject );

// resolve links in root path of instance, returns a Links object
// or an array of Links objects if the root path of the instance is an array
var links = schema.resolveLinks( instanceObject );

// find the first link with rel == 'search'
var searchLink = links.rel('search');

// find the first link with mediaType == 'application/xml'
var altLink = links.mediaType('application/xml');

// find the first link rel == 'alternate' and mediaType == 'application/xml',
// with method == 'GET'
var rssLink = links.alternate('application/atom+xml', {method: 'GET'});

// GET the searchLink href, with the given params, setting the Accept header, 
// validating schema and targetSchema, if given and validation is used, etc.
searchLink.fetch({name: 'Kermit'}, callback);

API

License

MIT