Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
newman-reporter-postman-cloud
Advanced tools
A newman reporter that sends run metrics to Postman
A Newman reporter that uploads newman run summary data back to Postman. This reporter processes the newman run metrics, and then uploads the data to the provided Workspace in Postman.
Once uploaded, you can see your collection runs on Postman Desktop App or on Postman Web.
The reporter works as a plugin with Newman so ensure that you have already installed that package globally, using
npm install -g newman
.
To globally install the postman cloud
reporter:
npm install -g newman-reporter-postman-cloud
To use this reporter with Newman CLI, specify postman-cloud
in Newman's -r
or --reporter
option.
newman run collection.json -r postman-cloud
Parameter | Description | Required |
---|---|---|
--reporter-postman-cloud-apiKey "<apiKey>" | This will be used to authenticate API call to Postman API. You can generate an API Key from here | Yes |
--reporter-postman-cloud-workspaceId "<workspaceId>" | This is the workspace id where you want your collection run to be created in Postman | Yes |
All the CLI functionality is available for programmatic use within a nodejs
script.
const newman = require('newman');
newman.run({
collection: './path/to/collection.json',
reporters: ['postman-cloud'],
reporter: {
'postman-cloud': {
apiKey: 'apiKey',
workspaceId: 'workspaceId'
}
}
})
newman-reporter-postman-cloud | newman | node |
---|---|---|
>= v1.0.0 | >= v5.3.2 | >= v14.x |
This software is licensed under Apache-2.0. See the LICENSE.md file for more information.
FAQs
A newman reporter that sends run metrics to Postman
We found that newman-reporter-postman-cloud demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.