Security News
Internet Archive Hacked, 31 Million Record Compromised
The Internet Archive's "Wayback Machine" has been hacked and defaced, with 31 millions records compromised.
@swagger-api/apidom-parser-adapter-json
Advanced tools
Parser adapter for parsing JSON documents into base namespace.
@swagger-api/apidom-parser-adapter-json is a parser adapter for the ApiDOM library that allows you to parse and manipulate JSON documents. It is particularly useful for working with API specifications and other structured data formats.
Parsing JSON
This feature allows you to parse a JSON string into an ApiDOM structure. The code sample demonstrates how to use the `parse` function to convert a JSON string into a parsed object.
const { parse } = require('@swagger-api/apidom-parser-adapter-json');
const jsonString = '{"key": "value"}';
const parsed = parse(jsonString);
console.log(parsed);
Serializing JSON
This feature allows you to serialize an ApiDOM structure back into a JSON string. The code sample demonstrates how to use the `serialize` function to convert an ApiDOM object into a JSON string.
const { serialize } = require('@swagger-api/apidom-parser-adapter-json');
const apiDomObject = { key: 'value' };
const jsonString = serialize(apiDomObject);
console.log(jsonString);
The `json5` package provides a JSON parser and serializer that is more lenient than the standard JSON. It allows for comments, trailing commas, and other features not supported by standard JSON. Compared to @swagger-api/apidom-parser-adapter-json, `json5` focuses on providing a more flexible JSON format rather than integrating with ApiDOM.
The `fast-json-stringify` package is a fast and efficient JSON stringifier that uses JSON schema to optimize the serialization process. It is designed for performance and can be significantly faster than the standard `JSON.stringify` method. Unlike @swagger-api/apidom-parser-adapter-json, it does not provide parsing capabilities and is focused solely on serialization.
The `ajv` package is a JSON schema validator that can be used to validate JSON data against a schema. It is highly performant and supports a wide range of JSON schema features. While it does not provide parsing or serialization capabilities like @swagger-api/apidom-parser-adapter-json, it is useful for ensuring that JSON data conforms to a specified schema.
@swagger-api/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.
After prerequisites for installing this package are satisfied, you can install it via npm CLI by running the following command:
$ npm install @swagger-api/apidom-parser-adapter-json
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 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 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. Single traversal is required which makes it super performant, and it's the default analysis used.
import { parse } from '@swagger-api/apidom-parser-adapter-json';
const parseResult = await parse('{"prop": "value"}', {
syntacticAnalysis: 'direct',
});
This analysis turns trees-sitter CST into JSON AST representation. Then JSON AST is turned into ApiDOM. Two traversals are required, which makes indirect analysis less performant than direct one. Thought less performant, having JSON AST representation allows us to do further complex analysis.
import { parse } from '@swagger-api/apidom-parser-adapter-json';
const parseResult = await parse('{"prop": "value"}', {
syntacticAnalysis: 'indirect',
});
This parser adapter is fully compatible with parser adapter interface required by @swagger-api/apidom-parser and implements all required properties.
Defines list of media types that this parser adapter recognizes.
['application/json']
Detection is based on using JSON.parse to indicate whether the provided source string is or isn't JSON string.
This adapter exposes an instance of base ApiDOM namespace.
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. |
syntacticAnalysis | String | direct | Indicate type of syntactic analysis |
All unrecognized arbitrary options will be ignored.
This parser adapter can be used directly or indirectly via @swagger-api/apidom-parser.
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 '@swagger-api/apidom-parser-adapter-json';
// detecting
await detect('{"prop": "value"}'); // => true
await detect('test'); // => false
// parsing
const parseResult = await parse('{"prop": "value"}', { sourceMap: true });
You can omit the mediaType
option here, but please read Word on detect vs mediaTypes before you do so.
import ApiDOMParser from '@swagger-api/apidom-parser';
import * as jsonParserAdapter from '@swagger-api/apidom-parser-adapter-json';
const parser = new ApiDOMParser();
parser.use(jsonParserAdapter);
const parseResult = await parser.parse('{"prop", "value"}', { mediaType: jsonParserAdapter.mediaTypes.latest('json') });
1.0.0-alpha.9 (2024-08-14)
FAQs
Parser adapter for parsing JSON documents into base namespace.
The npm package @swagger-api/apidom-parser-adapter-json receives a total of 348,497 weekly downloads. As such, @swagger-api/apidom-parser-adapter-json popularity was classified as popular.
We found that @swagger-api/apidom-parser-adapter-json 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.
Security News
The Internet Archive's "Wayback Machine" has been hacked and defaced, with 31 millions records compromised.
Security News
TC39 is meeting in Tokyo this week and they have approved nearly a dozen proposals to advance to the next stages.
Security News
Our threat research team breaks down two malicious npm packages designed to exploit developer trust, steal your data, and destroy data on your machine.