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

v0.0.4

Published

解析json-schema中包含的$ref字段,最终合并为一个整体

Downloads

41

Readme

json-schema-ref

解析JSON-Schema中包含的 $ref 关键字,并最终合并成一个完整的模块。

  • 支持内部引用,如#/definitions/internal
  • 支持外部HTTP引用,如http://taobao.com/schema.json
  • 支持嵌套,如ref中的schema还包含ref的情况
  • 支持River规范,若$ref中指向的schema为river格式,则使用schema.response

安装

npm install json-schema-ref --save

使用


var Parser = require( 'json-schema-ref' );

var schema = {
    type: 'object',
    properties: {
        info: {
            $ref: 'http://taobao.com/schema.json'
        }
    }
};

Parser( schema, function( result ){
    console.log( result );

    // --> result.refs: { 'http://taobao.com/schema.json': { error: null, schema: .. 对应的schema内容, path: '#/properties/info/$ref' }
    // --> result.schema: 合并后的schema
});

options

Parser接收额外的参数:

Parser( schema, options, next );

参数如下:

  • refs: Object,给定预置的$ref对应的schema
  • refHandle: Function,接受每个遇到的$ref对应的值作为参数,必须返回一个字符串,将作为$ref计算时的值

使用refs参数的例子:

var options = {
    refs: {
        'http://taobao.com/schema.json': {
            type: 'string',
            description: 'internal schema'
        }
    }
};

var schema = {
    type: 'object',
    properties: {
        external: {
            $ref: 'http://taobao.com/schema.json'
        }
    }
};

Parser( schema, options, function( result ){
    console.log( result.schema );
    /* output:
      {
          type: 'object',
          properties: {
              external: {
                  type: 'string',
                  description: 'internal schema'
              }
          }
      }
     */
});

使用refHandle的例子:

var options = {
    refHandle: function( value ){
        if( value === 'external' ){
            return 'http://localhost:9999/json/external.json'
        }
        else {
            return value;
        }
    }
};

var schema = {
    type: 'object',
    properties: {
        external: {
            $ref: "external"
        }
    }
};

Parser( schema, options, function( result ){
    /* 计算结果中使用 `http://localhost:9999/json/external.json` 代替 `external` 来进行取值 */
});

测试

需要先开启本地服务:node test/server.js,然后执行npm test