Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@swagger-api/apidom-parser-adapter-openapi-yaml-2
Advanced tools
Parser adapter for parsing YAML documents into OpenAPI 2.0 namespace.
@swagger-api/apidom-parser-adapter-openapi-yaml-2
is a parser adapter for the OpenAPI 2.0 specification in YAML format.
Under the hood this adapter uses apidom-parser-adapter-yaml-1-2
to parse a source string into generic ApiDOM in base ApiDOM namespace
which is then refracted with OpenAPI 2.0 Refractors.
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-openapi-yaml-2
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/vnd.oai.openapi;version=2.0',
'application/vnd.oai.openapi+yaml;version=2.0',
]
Detection is based on a regular expression matching required OpenAPI 2.0 specification symbols in YAML format.
This adapter exposes an instance of OpenAPI 2.0 ApiDOM namespace.
parse
function consumes various options as a second argument. Here is a list of these options:
Option | Type | Default | Description |
---|---|---|---|
specObj | Object | Specification Object | This specification object drives the YAML AST transformation to OpenAPI 2.0 ApiDOM namespace. |
sourceMap | Boolean | false | Indicate whether to generate source maps. |
refractorOpts | Object | {} | Refractor options are passed to refractors during refracting phase. |
All unrecognized arbitrary options will be ignored.
This parser adapter can be used directly or indirectly via 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-openapi-yaml-2';
// detecting
await detect('swagger: "2.0"'); // => true
await detect('test'); // => false
// parsing
const parseResult = await parse('swagger: "2.0"', { 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 openApiYamlAdapter from '@swagger-api/apidom-parser-adapter-openapi-yaml-2';
const parser = new ApiDOMParser();
parser.use(openApiYamlAdapter);
const parseResult = await parser.parse('swagger: "2.0"', { mediaType: openApiYamlAdapter.mediaTypes.latest('yaml') });
1.0.0-beta.2 (2024-11-22)
FAQs
Parser adapter for parsing YAML documents into OpenAPI 2.0 namespace.
The npm package @swagger-api/apidom-parser-adapter-openapi-yaml-2 receives a total of 378,741 weekly downloads. As such, @swagger-api/apidom-parser-adapter-openapi-yaml-2 popularity was classified as popular.
We found that @swagger-api/apidom-parser-adapter-openapi-yaml-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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.