
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
swagger-zoo
Advanced tools
This repository contains a collection of Swagger sample files and their parsed Refract results. These files are suitable for testing.
You can use it either as an npm
module or a git
submodule.
npm
First, install the module:
npm install swagger-zoo
Then use it:
import zoo from 'swagger-zoo';
// Features are tiny examples of various Swagger features
for (const feature of zoo.features()) {
console.log(`Feature: ${feature.name}`);
// String of the swagger source
console.log(feature.swagger);
// The api-elements is loaded as an object, so we stringify it
// here to print it out.
console.log(JSON.stringify(feature.apiElements, null, 2));
// The api-elements with source maps is also loaded similarly
console.log(JSON.stringify(feature.apiElementsSourceMap, null, 2));
}
// Examples are real-world API examples
for (const example of zoo.examples()) {
console.log(`Example: ${example.name}`);
console.log(example.swagger);
console.log(JSON.stringify(example.apiElements, null, 2));
console.log(JSON.stringify(example.apiElementsSourceMap, null, 2));
}
// Or, you can easily get all of the above together in one go
for (const sample of zoo.samples()) {
console.log(`Sample: ${sample.name}`);
console.log(sample.swagger);
console.log(JSON.stringify(sample.apiElements, null, 2));
console.log(JSON.stringify(sample.apiElementsSourceMap, null, 2));
}
git
If you are not using Javascript or a related language, then you can still get the test files using git
:
$ git submodule add https://github.com/apiaryio/api-elements.js
The files are in api-elements.js/packages/swagger-zoo/fixtures/features
and api-elements.js/packages/swagger-zoo/fixtures/examples
, which correspond to the Javascript functions explained above.
FAQs
Swagger example files for testing
The npm package swagger-zoo receives a total of 206 weekly downloads. As such, swagger-zoo popularity was classified as not popular.
We found that swagger-zoo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.