Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@swagger-api/apidom-parser-adapter-yaml-1-2
Advanced tools
Parser adapter for parsing YAML documents into base namespace.
@swagger-api/apidom-parser-adapter-yaml-1-2
is a parser adapter for the YAML 1.2 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-yaml-1-2
The parse stage takes YAML 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 YAML 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 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.
['text/yaml', 'application/yaml']
Detection of this parser adapter
always returns false
. The reason is that it's almost impossible to detect if a source string is YAML without actually parsing it.
Don't rely on this function, rather use mediaType
instead and please read Word on detect vs mediaTypes.
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. |
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-yaml-1-2';
// always detecting false in this parser adapter
await detect('prop: value'); // => false
await detect('test'); // => false
// parsing
const parseResult = await parse('prop: value', { sourceMap: true });
import ApiDOMParser from '@swagger-api/apidom-parser';
import * as yamlParserAdapter from '@swagger-api/apidom-parser-adapter-yaml-1-2';
const parser = new ApiDOMParser();
parser.use(yamlParserAdapter);
const parseResult = await parser.parse('prop: value', { mediaType: yamlParserAdapter.mediaTypes.latest('yaml') });
1.0.0-beta.10 (2025-01-25)
FAQs
Parser adapter for parsing YAML documents into base namespace.
The npm package @swagger-api/apidom-parser-adapter-yaml-1-2 receives a total of 311,913 weekly downloads. As such, @swagger-api/apidom-parser-adapter-yaml-1-2 popularity was classified as popular.
We found that @swagger-api/apidom-parser-adapter-yaml-1-2 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.