
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign hits npm.
newman-reporter-remote
Advanced tools
A Remote reporter for Newman that posts aggregated information for each execution in a collection run to the remote location or save to disk in JSON format. This needs to be used in conjunction with Newman so that it can recognize Remote reporting options.
The installation should be global if Newman is installed globally, local otherwise. (Replace -g from the command below with -S for a local installation)
$ npm install -g newman-reporter-remote
In order to enable this reporter, specify remote in Newman's -r or --reporters option.
# saving execution summary to disk
$ newman run collection.json -r remote --reporter-remote-export './summary.json'
# posting execution summary to remote endpoint
$ newman run collection.json -r remote --reporter-remote-api '{"url": "http://localhost:3000", "method": "POST"}'
| CLI Option | Description |
|---|---|
--reporter-remote-run-id <runId> | Set custom run id. (default: UUID4) |
--reporter-remote-source <source> | Set remote execution source. (default: newman-reporter-remote@<version>) |
--reporter-remote-export <path> | Specify a path where the output JSON file will be written to disk. If not specified, the file will be written to newman/ in the current working directory. |
--reporter-remote-api <json> | Specify the request.js options which will be used to post execution summary to the specified endpoint. |
The CLI functionality is available for programmatic use as well.
const newman = require('newman');
newman.run({
collection: require('./examples/sample-collection.json'), // can also provide a URL or path to a local JSON file.
reporters: 'remote',
reporter: {
remote: {
// set custom run id
runId: '12345',
// set remote execution source
source: 'TestApp@1.2.3',
// export execution summary to disk
// if path is not specified, the file will be written to `newman/` in the current working directory.
export: './summary.json',
// post execution summary to remote endpoint
// request.js(https://github.com/request/request) options object
api: {
url: 'http://localhost:3000',
method: 'POST'
},
// custom handling of execution summary
callback: function (err, summary) {
// custom logic goes here
}
}
}
}, function (err) {
if (err) { throw err; }
console.log('collection run complete!');
});
| newman-reporter-remote | newman | node |
|---|---|---|
| v0.1.0 | >= v4.1.0 | >= v6.x |
Sign in using your Postman account to participate in the discussions and don't forget to take advantage of the search bar - the answer to your question might already be waiting for you! Don’t want to log in? Then lurk on the sidelines and absorb all the knowledge.
This software is licensed under Apache-2.0. Copyright Postdot Technologies, Inc. See the LICENSE.md file for more information.
FAQs
Newman Remote Reporter
We found that newman-reporter-remote 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.

Research
/Security News
Another wave of Shai-Hulud campaign hits npm.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.