Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

simple-json-schema-deref

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-json-schema-deref

Returns a JSON Schema with $ref's replaced with actual schemas

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
5K
increased by57.71%
Maintainers
1
Weekly downloads
 
Created
Source

json-schema-deref

Returns a JSON Schema with $ref's replaced with actual schemas

Get Started

Start by installing using a package manager or by grabbing the proper distribution:

$ npm install json-schema-deref
or
$ bower install json-schema-deref

Note: The main file for Bower defaults to the AngularJS version.

Use in NodeJS

var jsDeref = requrie('json-schema-deref');

var dereferencedSchema = jsDeref(schema);

Use in AngularJS

var myApp = angular.module('MyApp', ['jsonSchemaDeref']);

myApp.factory('myFactory', function (jsonSchemaDeref) {

  var schema = {
    type: 'object',
    ...
  };

  var dereferencedSchema = jsonSchemaDeref(schema);

});

Use in the browser

var jsDeref = window.JSON_SCHEMA_DEREF;

var dereferencedSchema = jsDeref(schema);

MIT License

Keywords

FAQs

Package last updated on 16 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc