New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@har-sdk/postman

Package Overview
Dependencies
Maintainers
0
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@har-sdk/postman

[![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

  • 2.4.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
90
decreased by-5.26%
Maintainers
0
Weekly downloads
 
Created
Source

@har-sdk/postman

Maintainability Test Coverage Build Status NPM Downloads

Transform your Postman collection into a series of HAR request objects. This can be useful for a variety of purposes, such as analyzing network performance and debugging web applications.

With this library, you can easily generate requests with fake data to test your API using AutoCannon or DevTools.

Setup

To install the library, run the following command:

$ npm i --save @har-sdk/postman

Usage

To convert your collection, use the postman2har function as follows:

import collection from './postman-collection.json' assert { type: 'json' };
import { postman2har } from '@har-sdk/postman';

const requests = await postman2har(collection);
console.log(requests);

If you want to pass additional data to resolve environment variables, you can do so by passing an options object as the second parameter:

const requests = await postman2har(collection, {
  environment: { baseUrl: 'https://example.com' }
});
console.log(requests);

License

Copyright © 2023 Bright Security.

This project is licensed under the MIT License - see the LICENSE file for details.

Keywords

FAQs

Package last updated on 22 Aug 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc