2.4.5 • Published 1 year ago

@har-sdk/postman v2.4.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@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.

2.4.5

1 year ago

2.4.4

2 years ago

2.4.3

2 years ago

2.3.0

2 years ago

2.2.1

2 years ago

2.2.0

2 years ago

2.4.1

2 years ago

2.2.3

2 years ago

2.4.0

2 years ago

2.3.1

2 years ago

2.2.2

2 years ago

2.2.5

2 years ago

2.4.2

2 years ago

2.2.4

2 years ago

2.1.2

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.6

2 years ago

2.1.5

2 years ago

2.0.3

2 years ago

2.1.1

2 years ago

2.0.2

2 years ago

2.1.0

2 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago