1.0.4 • Published 10 months ago

@stoplight/spectral-ref-resolver v1.0.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

@stoplight/spectral-ref-resolver

This package provides Spectral-compatible bindings for @stoplight/json-ref-resolver and @stoplight/json-ref-readers.

You shouldn't need to install this package directly unless you want to create a custom JSON refs resolver

Installation

npm install --save @stoplight/spectral-ref-resolver

# OR

yarn add @stoplight/spectral-ref-resolver

Usage

An example usage of spectral-ref-resolver together with proxy-agent.

import { createHttpAndFileResolver, Resolver } from '@stoplight/spectral-ref-resolver';
import ProxyAgent from import('proxy-agent');

module.exports = createHttpAndFileResolver({ agent: new ProxyAgent(process.env.PROXY) });