@speclynx/apidom-parser-adapter-json
v2.12.2
Published
Parser adapter for parsing JSON documents into base namespace.
Readme
@speclynx/apidom-parser-adapter-json
@speclynx/apidom-parser-adapter-json is a parser adapter for the JSON format.
CST produced by lexical analysis is syntactically analyzed and ApiDOM structure using base ApiDOM namespace is produced.
Installation
You can install @speclynx/apidom-parser-adapter-json via npm CLI by running the following command:
$ npm install @speclynx/apidom-parser-adapter-jsonParse phases
The parse stage takes JSON string and produces ApiDOM structure using base ApiDOM namespace. There are two phases of parsing: Lexical Analysis and Syntactic Analysis.
Lexical Analysis
Lexical Analysis will take a JSON string and turn it into a stream of tokens. tree-sitter / web-tree-sitter is used as an underlying lexical analyzer.
Syntactic Analysis
Syntactic Analysis will take a stream of tokens and turn it into an ApiDOM representation. CST produced by lexical analysis is syntactically analyzed and ApiDOM structure using base ApiDOM namespace is produced.
This analysis directly turns tree-sitter CST into ApiDOM in a single traversal pass, making it highly performant.
import { parse } from '@speclynx/apidom-parser-adapter-json';
const parseResult = await parse('{"prop": "value"}');Parser adapter API
This parser adapter is fully compatible with parser adapter interface required by @speclynx/apidom-parser and implements all required properties.
mediaTypes
Defines list of media types that this parser adapter recognizes.
['application/json']detect
Detection indicates whether the provided source string is valid JSON.
Option | Type | Default | Description
--- | --- | --- | ---
strict | Boolean | false | Use strict detection mode (native JSON.parse).
In default mode, detection uses tree-sitter for parsing with error recovery.
In strict mode, detection uses native JSON.parse which is faster but requires valid JSON.
namespace
This adapter exposes an instance of base ApiDOM namespace.
parse
parse function consumes various options as a second argument. Here is a list of these options:
Option | Type | Default | Description
--- | --- | --- | ---
sourceMap | Boolean | false | Indicate whether to generate source maps.
style | Boolean | false | Indicate whether to capture format-specific style information for round-trip preservation.
strict | Boolean | false | Use strict parsing mode (native JSON.parse). When true, parsing is faster but throws on invalid JSON and doesn't support source maps or style preservation.
All unrecognized arbitrary options will be ignored.
Parsing modes
This adapter supports two parsing modes:
Tree-sitter mode (default, strict: false):
- Uses web-tree-sitter for parsing
- Provides error recovery for malformed JSON
- Supports source map generation
- Supports style preservation (indentation, raw number representation)
- Slightly slower but more resilient
Strict mode (strict: true):
- Uses native
JSON.parsefor parsing - Faster performance
- Throws
SyntaxErroron invalid JSON - Does not support source maps (throws error if both
strictandsourceMaparetrue) - Does not support style preservation (throws error if both
strictandstylearetrue)
Usage
This parser adapter can be used directly or indirectly via @speclynx/apidom-parser.
Direct usage
During direct usage you don't need to provide mediaType as the parse function is already pre-bound
with supported media types.
import { parse, detect } from '@speclynx/apidom-parser-adapter-json';
// detecting (tree-sitter mode - default)
await detect('{"prop": "value"}'); // => true
await detect('test'); // => false
// detecting (strict mode)
await detect('{"prop": "value"}', { strict: true }); // => true
await detect('{invalid}', { strict: true }); // => false
// parsing (tree-sitter mode - default, with source maps)
const parseResult = await parse('{"prop": "value"}', { sourceMap: true });
// parsing (tree-sitter mode, with style preservation)
const parseResultStyled = await parse('{"prop": "value"}', { style: true });
// parsing (strict mode - faster, no source maps or style)
const parseResultStrict = await parse('{"prop": "value"}', { strict: true });Indirect usage
You can omit the mediaType option here, but please read Word on detect vs mediaTypes before you do so.
import ApiDOMParser from '@speclynx/apidom-parser';
import * as jsonParserAdapter from '@speclynx/apidom-parser-adapter-json';
const parser = new ApiDOMParser();
parser.use(jsonParserAdapter);
const parseResult = await parser.parse('{"prop", "value"}', { mediaType: jsonParserAdapter.mediaTypes.latest('json') });