
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
swagger-tools
Advanced tools
The project provides various tools for integrating and interacting with Swagger. This project is in its infancy but what is within the repository should be fully tested and reusable. Please visit the issue tracker to see what issues we are aware of and what features/enhancements we are working on.
consumes
value(s)swagger-tools is distributed via NPM so installation is the usual: npm install swagger-tools --save
The swagger-tools module currently exposes one property: v1_2
. This is a reference to an object that has the
following structure:
docsUrl
: This is a link to the Swagger documentation for the corresponding specification versionschemasUrl
: This is a link to the Swagger JSON Schema files for the corresponding specification versionversion
: This is the Swagger specification versionschemas
: This is an object where the keys are the Swagger JSON Schema file names and the object is the loaded schema
contentsvalidate
: This is a function used to validate your Swagger document(s) based on the schema(s) for that
specifications schemas and semanticallycomposeModel
: This takes a Swagger document and generates a JSON Schema representation of the model completely
composedHere is an example showing how to use both versions of the validate
function (For more details, the sources are
documented):
Swagger 1.2 (v1) Example
var swagger = require('swagger-tools');
var spec = swagger.specs.v1_2; // Could also use 'swagger.specs.v1'
var petJson = require('./samples/1.2/pet.json');
var rlJson = require('./samples/1.2/resource-listing.json');
var results = spec.validate(rlJson, [petJson]);
Swagger 2.0 (v2) Example
var swagger = require('swagger-tools');
var spec = swagger.specs.v2_0; // Could also use 'swagger.specs.v2'
var petStoreJson = require('./samples/2.0/petstore.json');
var results = spec.validate(petStoreJson);
Here is an example of using the Swagger middleware for validating requests based on your Swagger resource documents:
Swagger 1.2 (v1) Example
var swagger = require('swagger-tools');
var petJson = require('./samples/1.2/pet.json');
var resourceListing = require('./samples/1.2/resource-listing.json');
var storeJson = require('./samples/1.2/user.json');
var userJson = require('./samples/1.2/store.json');
var swaggerMetadata = swagger.middleware.v1_2.swaggerMetadata; // Could also use 'swagger.metadata.v1.swaggerMetadata'
var swaggerRouter = swagger.middleware.v1_2.swaggerRouter; // Could also use 'swagger.metadata.v1.swaggerRouter'
var swaggerValidator = swagger.middleware.v1_2.swaggerValidator; // Could also use 'swagger.metadata.v1.swaggerValidator'
var connect = require('connect');
var app = connect();
// Interpret Swagger resources and attach metadata to request - must be first in swagger-tools middleware chain
app.use(swaggerMetadata(resourceListing, [petJson, storeJson, userJson]));
// Validate Swagger requests
app.use(swaggerValidator());
// Route validated requests to appropriate controller
app.use(swaggerRouter({useStubs: true, controllers: './controllers'}));
// ...
Swagger 2.0 (v2) Example
var swagger = require('swagger-tools');
var swaggerObject = require('./samples/2.0/petstore.json');
var swaggerMetadata = swagger.middleware.v2_0.swaggerMetadata; // Could also use 'swagger.metadata.v2.swaggerMetadata'
var swaggerRouter = swagger.middleware.v2_0.swaggerRouter; // Could also use 'swagger.metadata.v2.swaggerRouter'
var swaggerValidator = swagger.middleware.v2_0.swaggerValidator; // Could also use 'swagger.metadata.v2.swaggerValidator'
var connect = require('connect');
var app = connect();
// Interpret Swagger resources and attach metadata to request - must be first in swagger-tools middleware chain
app.use(swaggerMetadata(swaggerObject));
// Validate Swagger requests
app.use(swaggerValidator());
// Route validated requests to appropriate controller
app.use(swaggerRouter({useStubs: true, controllers: './controllers'}));
// ...
This project uses Gulp for building so npm install -g gulp
once you clone this project. Running gulp
in the
project root will lint check the source code and run the unit tests.
FAQs
Various tools for using and integrating with Swagger.
The npm package swagger-tools receives a total of 50,315 weekly downloads. As such, swagger-tools popularity was classified as popular.
We found that swagger-tools 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.