
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@postqode/cli
Advanced tools
A powerful command-line tool for running API test suites and converting API collection formats. Automate your API testing workflow with comprehensive reporting and format conversion capabilities.
Install globally via npm:
npm install -g @postqode/cli
Verify installation:
postqode-runner -V
| Option | Description |
|---|---|
-V, --version | Output the CLI version |
-v, --verbose | Enable verbose output for debugging |
-h, --help | Display help information |
Run API test suites with comprehensive reporting options:
postqode-runner execute [options]
Options:
| Option | Description | Default |
|---|---|---|
-s, --suite <file> | Test suite file path (e.g. _meta.suite.yaml) | Required |
-w, --workspace <dir> | Workspace directory | Current project directory |
-c, --config <name> | Run configuration name (profile for environment/settings) | Default |
--report-formats <formats> | Report formats to generate (html, junit, overview) | html |
--report-dir <dir> | Directory to save reports | Current directory |
Examples:
# Run a test suite with default HTML report
postqode-runner execute -s testSuites/MySuite/_meta.suite.yaml
# Run with multiple report formats
postqode-runner execute -s testSuites/MySuite/_meta.suite.yaml --report-formats html junit
# Run with custom workspace and report directory
postqode-runner execute -s testSuites/MySuite/_meta.suite.yaml -w /projects/myWorkspace --report-dir reports
Convert between OpenAPI, Postman Collections, and Postqode test formats:
postqode-runner convert [options]
Options:
| Option | Description | Example |
|---|---|---|
-i, --input <file> | Input file or URL (OpenAPI, Postman) | openapi.yaml |
-o, --output <file> | Output file | collection.json |
Examples:
# Convert OpenAPI to Postman Collection
postqode-runner convert -i openapi.yaml -o collection.json
# Convert Postman Collection to Postqode Test Suite
postqode-runner convert -i collection.json -o testSuites/MySuite/_meta.suite.yaml
The execute command supports multiple reporting formats:
Reports are saved in the --report-dir directory (default: current workspace).
Convert OpenAPI to Test Suite:
postqode-runner convert -i openapi.yaml -o testSuites/MySuite/_meta.suite.yaml
Execute test suite with reports:
postqode-runner execute -s testSuites/MySuite/_meta.suite.yaml --report-formats html junit
Check generated reports in the /reports directory
-w) to organize test suites-c) for different environments (e.g. Dev, QA, Prod)testSuites/ with _meta.suite.yaml as entry points| Issue | Solution |
|---|---|
| Command not found | Ensure @postqode/cli is installed globally |
| Permission issues | Use sudo npm install -g @postqode/cli (Linux/macOS) |
| Invalid suite file | Verify _meta.suite.yaml structure |
We welcome contributions! Please feel free to submit issues and pull requests.
This project is licensed under the Apache License 2.0.
For support and questions, please visit our documentation or create an issue in the repository.
Keywords: API testing, CLI tool, test automation, OpenAPI, Postman, test suites, CI/CD, reporting
FAQs
Command-line interface for Postqode API testing framework
We found that @postqode/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.