
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
yang-swagger
Advanced tools
YANG model-driven swagger/openapi transform
$ npm install -g yang-swagger
The preferred installation is global for easy access to the
yang-swagger utility but can also be used as a dependency module to
help generate swagger/openapi specification as part of your project.
NOTE: Currently, Swagger/OpenAPI 2.0 Specification does NOT support JSON-schema
anyOfandoneOfdirectives, which means that we cannot properly treat YANGchoice/casestatements during conversion. As a work-around, the current transform will simply serialize all configuration nodes from thechoice/casesections into a flat list of properties.
$ yang-swagger -f yaml -o swagger.yaml yang-openapi
The above example will import the yang-openapi YANG module and
transform into swagger specification YAML file.
Usage: yang-swagger [options] modules...
Options:
-c, --config <filename> Use <filename> to retrieve configuration data (default: uses 'config' directory)
-f, --format <string> Convert to YAML or JSON (default: json)
-o, --output <filename> Write to <filename> if specified, otherwise to console
Using the --config option will allow you to specify where to find
the configuration data for the yang-openapi YANG module. By default,
it will check the config directory but you can specify any arbitrary
file location for specifying the yang-openapi:info configuration
data.
You can also use it as a library module:
swag = require("yang-swagger").eval {
'yang-openapi:info':
title: "my-api"
description: "describe purpose"
version: "1.0"
contact:
name: "your name"
url: "http://some/website"
email: "your email"
license:
name: "Apache-2.0"
}
swag.in('transform')
.invoke modules: [ 'yang-openapi' ]
.then (output) ->
console.log "do something with <output.spec>"
For more information on programmatic usage, be sure to take a look at the References listed below.
This software is brought to you by Corenova Technologies. We'd love to hear your feedback. Please feel free to reach me at peter@corenova.com anytime with questions, suggestions, etc.
FAQs
YANG model-driven swagger/openapi transform
We found that yang-swagger demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.