
Research
/Security News
Fake imToken Chrome Extension Steals Seed Phrases via Phishing Redirects
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.
@hey-api/json-schema-ref-parser
Advanced tools
Install using npm:
npm install @hey-api/json-schema-ref-parser
yarn add @hey-api/json-schema-ref-parser
bun add @hey-api/json-schema-ref-parser
You've got a JSON Schema with $ref pointers to other files and/or URLs. Maybe you know all the referenced files ahead
of time. Maybe you don't. Maybe some are local files, and others are remote URLs. Maybe they are a mix of JSON and YAML
format. Maybe some of the files contain cross-references to each other.
{
"definitions": {
"person": {
// references an external file
"$ref": "schemas/people/Bruce-Wayne.json"
},
"place": {
// references a sub-schema in an external file
"$ref": "schemas/places.yaml#/definitions/Gotham-City"
},
"thing": {
// references a URL
"$ref": "http://wayne-enterprises.com/things/batmobile"
},
"color": {
// references a value in an external file via an internal reference
"$ref": "#/definitions/thing/properties/colors/black-as-the-night"
}
}
}
JSON Schema $Ref Parser is a full JSON Reference and JSON Pointer implementation that crawls even the most complex JSON Schemas and gives you simple, straightforward JavaScript objects.
$ref pointers to external files and URLs, as well as custom sources such as databases$ref pointers$ref pointers to the same value always resolve to the same object
instancebundleMany: Merge and bundle several OpenAPI/JSON Schema inputs (files, URLs, or raw objects) into a single schema. Components are prefixed to avoid name collisions, paths are namespaced on conflict, and $refs are rewritten accordingly.import { $RefParser } from '@hey-api/json-schema-ref-parser';
const parser = new $RefParser();
const merged = await parser.bundleMany({
pathOrUrlOrSchemas: [
'./specs/a.yaml',
'https://example.com/b.yaml',
{ openapi: '3.1.0', info: { title: 'Inline' }, paths: {} },
],
});
// merged.components.* will contain prefixed names like a_<name>, b_<name>, etc.
excludedPathMatcher(path) => boolean to skip subpaths and onDereference(path, value, parent, parentPropName) to observe replacements.const parser = new $RefParser();
parser.options.dereference.excludedPathMatcher = (p) => p.includes('/example/');
parser.options.dereference.onDereference = (p, v) => {
// inspect p / v as needed
};
await parser.dereference({ pathOrUrlOrSchema: './openapi.yaml' });
$id, it is used as the base URL for resolving relative $refs.await new $RefParser().bundle({
pathOrUrlOrSchema: {
$id: 'https://api.example.com/openapi.json',
openapi: '3.1.0',
paths: {
'/ping': { get: { responses: { 200: { description: 'ok' } } } },
},
},
});
FAQs
Parse, Resolve, and Dereference JSON Schema $ref pointers
The npm package @hey-api/json-schema-ref-parser receives a total of 1,282,400 weekly downloads. As such, @hey-api/json-schema-ref-parser popularity was classified as popular.
We found that @hey-api/json-schema-ref-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.