mugen / postman2doc
Convert postman collection.json to markdown/html/docx.
Requires
- php: >=7.1
- erusev/parsedown: ^1.6
- laravel-zero/framework: 4.0.*
- overtrue/pinyin: ^3.0
- phpoffice/phpword: ^0.13.0
Requires (Dev)
- codedungeon/phpunit-result-printer: ^0.4.4
- phpunit/phpunit: ~6.4
This package is auto-updated.
Last update: 2025-03-13 16:34:08 UTC
README
Introduction
It ia a convert postman collection.json to simple markdown/html/docx document tool.
Installation
You can install it with following command. recommended to install to the global, and you need to add global composer vendor/bin
to the PATH.
composer global require mugen/postman2doc
Usage
The following command can convert a file named 'postman_collection.json'.
postman2doc convert /path/to/postman_collection.json
OR you can run postman2doc
directly, then you will see the command I/O.
If you want convert to html & docx document, use following command.
postman2doc convert /path/to/postman_collection.json --html --docx --no-md
OR
postman2doc convert:html /path/to/postman_collection.json postman2doc convert:docx /path/to/postman_collection.json
If convert success, you will receive a system notification, then you can see the document file at same folder.
Features
Convert postman collection.json to...
✓ markdown ✓ HTML ✓ docx ✘ PDF
License
Released under the MIT license
Thanks
This tool is base on laravel-zero