![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@har-sdk/oas
Advanced tools
[![Maintainability](https://api.codeclimate.com/v1/badges/4acaec95c82465cb2c3d/maintainability)](https://codeclimate.com/github/NeuraLegion/har-sdk/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/4acaec95c82465cb2c3d/test_coverage
Transform your Swagger/OAS spec files into a series of HAR request objects.
With this library, you can easily generate requests with fake data to test your API using AutoCannon or DevTools.
To install the library, run the following command:
$ npm i --save @har-sdk/oas
To covert your specification, use the oas2har
function as follows:
import schema from './swagger.json' assert { type: 'json' };
import { oas2har } from '@har-sdk/oas';
const requests = await oas2har(schema);
console.log(requests);
YAML files can also be loaded using js-yaml, as shown below:
import { oas2har } from '@har-sdk/oas';
import { readFile } from 'node:fs/promises';
import yaml from 'js-yaml';
const content = yaml.load(await readFile('./swagger.yaml', 'utf-8'));
const requests = await oas2har(content);
console.log(requests);
If you have your specification hosted remotely, you can use a library like axios to fetch it and then convert it to a HAR. Here's an example:
import axios from 'axios';
import { oas2har } from '@har-sdk/oas';
const url = 'https://example.com/swagger.json';
const response = await axios.get(url);
const requests = await oas2har(response.data);
console.log(requests);
Some specifications may incorporate example values for parameters provided in vendor extension fields, to include such examples in output use the oas2har
function as follows:
import schema from './swagger.json' assert { type: 'json' };
import { oas2har } from '@har-sdk/oas';
const requests = await oas2har(schema, { includeVendorExamples: true });
console.log(requests);
Notice the includeVendorExamples
option affects Swagger specifications only.
Some specifications may have configuration for Accept
header value in request parameters section. The automatically inferred Accept
header values may be skipped, to skip these inferred values in output use the oas2har
function as follows:
import schema from './swagger.json' assert { type: 'json' };
import { oas2har } from '@har-sdk/oas';
const requests = await oas2har(schema, { skipAcceptHeaderInference: true });
console.log(requests);
Copyright © 2023 Bright Security.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
[![Maintainability](https://api.codeclimate.com/v1/badges/4acaec95c82465cb2c3d/maintainability)](https://codeclimate.com/github/NeuraLegion/har-sdk/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/4acaec95c82465cb2c3d/test_coverage
The npm package @har-sdk/oas receives a total of 151 weekly downloads. As such, @har-sdk/oas popularity was classified as not popular.
We found that @har-sdk/oas demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.