1.3.2 • Published 4 years ago

@neuralegion/postman2har v1.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

@neuralegion/postman2har

THIS REPO HAS BEEN DEPRECATED. THE DEVELOPMENT HAS MOVED TO A NEW REPOSITORY: https://github.com/NeuraLegion/har-sdk

Transform you Postman collection to a series of HAR request objects.

Setup

npm i --save @neuralegion/postman2har

🚀 Usage

Using as a ES module:

import { postman2har } from '@neuralegion/postman2har';
import collection from 'your-postman-collection.json';

postman2har(collection).then((requests) => {
  console.log(requests);
});

If you want to pass additional data to resolve environment variables you can pass them via options:

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

📝License

Copyright © 2020 NeuraLegion.

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

1.3.2

4 years ago

1.3.1

4 years ago

1.3.0

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.0.2

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago