
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@panz3r/apidoc-postman
Advanced tools
A tool to generate Postman collections from apiDoc Inline Documentation
This library uses the apidoc-core library.
By putting apiDoc inline comments in the source code, you will get a postman.json file which can be imported into the Postman App to create a new collection.
E.g.
/**
* @api {get} /user/id Request User information
* @apiName GetUser
* @apiGroup User
* @apiPermission basic
*
* @apiParam {Number} id Users unique ID.
*
* @apiSuccess {String} firstname Firstname of the User.
* @apiSuccess {String} lastname Lastname of the User.
*/
npm install @panz3r/apidoc-postman
apidoc-postman takes full advantage of Postman environment variables for the following aspects
Using the base_url environment variable you can specify the base URL of your APIs.
apidoc-postman uses a simple logic to map your endpoints permissions to Postman ones.
You can set your endpoint @apiPermission to basic to have a Basic authentication on Postman, otherwise the Bearer authentication will be used by creating a reference to an environment variable called <@apiPermission>_token.
E.g. @apiPermission user maps to user_token.
N.B: At the moment only Basic and Bearer authentications are supported
apidoc-postman will setup Postman to use application/json body format and will create a template body based on the @apiParam Body group.
E.g.
/**
* @apiParam (Body) {Number} id ID of the User.
* @apiParam (Body) {String} name Name of the User.
*/
will translate to the following template body
{
"id": 0,
"name": "string"
}
apidoc-postman -i example/ -o doc/
Have a look at apiDoc for full functionality overview and capabilities of apiDoc.
{
"base_url": "https://localhost:8000/api/v1",
"basic_username": "basic_auth_username",
"basic_password": "basic_auth_password",
"user_token": "a.user.bearer.token"
}
Made with :sparkles: & :heart: by Mattia Panzeri and contributors
FAQs
A tool to generate Postman collections from apiDoc Inline Documentation
We found that @panz3r/apidoc-postman demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.