npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

newman-reporter-json-extralight

v1.0.2

Published

Reporter which provide a concise JSON summary of essential run data, omitting stream-related and assertion script details. It significantly reduces JSON size from 450MB to 6MB, enhancing performance and readability.

Downloads

1,050

Readme

Newman Reporter JSON Extra Light

The "newman-reporter-json-extralight" customizes Newman's reporting, providing a concise JSON summary of essential run data, omitting unnecessary details like stream-related information and test assertion scripts. It significantly reduces JSON size from 450MB to 6MB, enhancing performance and readability.

Features:

  • Concise Reporting: Focuses on key run data, improving readability.
  • Reduced JSON Size: Significantly reduces JSON file size for improved efficiency.
  • Performance Enhancement: Streamlined reporting enhances performance during data processing.
  • Easy Integration: Easily installable via npm, seamlessly integrates into Newman workflows.

How to Use:

  1. Install the custom reporter via npm:
    npm install -g newman-reporter-json-extralight
  2. Specify the reporter when running Newman:
    newman run <collection-file> --reporters json-extralight

Schema followed by the reporter:

{
  "type": "object",
  "properties": {
    "stats": {
      "type": "object",
      "properties": {
        "iterations": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "items": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "scripts": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "prerequests": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "requests": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "tests": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "assertions": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "testScripts": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        },
        "prerequestScripts": {
          "type": "object",
          "properties": {
            "total": { "type": "integer" },
            "pending": { "type": "integer" },
            "failed": { "type": "integer" }
          }
        }
      }
    },
    "timings": {
      "type": "object",
      "properties": {
        "responseAverage": { "type": "number" },
        "responseMin": { "type": "number" },
        "responseMax": { "type": "number" },
        "responseSd": { "type": "number" },
        "dnsAverage": { "type": "number" },
        "dnsMin": { "type": "number" },
        "dnsMax": { "type": "number" },
        "dnsSd": { "type": "number" },
        "firstByteAverage": { "type": "number" },
        "firstByteMin": { "type": "number" },
        "firstByteMax": { "type": "number" },
        "firstByteSd": { "type": "number" },
        "started": { "type": "number" },
        "completed": { "type": "number" }
      }
    },
    "executions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "cursor": {
            "type": "object",
            "properties": {
              "position": { "type": "integer" },
              "iteration": { "type": "integer" },
              "length": { "type": "integer" },
              "cycles": { "type": "integer" },
              "empty": { "type": "boolean" },
              "eof": { "type": "boolean" },
              "bof": { "type": "boolean" },
              "cr": { "type": "boolean" },
              "ref": { "type": "string" },
              "httpRequestId": { "type": "string" }
            }
          },
          "item": {
            "type": "object",
            "properties": {
              "id": { "type": "string" },
              "name": { "type": "string" },
              "request": { "type": "object" },
              "response": { "type": "array" },
              "event": { "type": "array" },
              "protocolProfileBehavior": { "type": "object" }
            }
          },
          "request": { "type": "object" },
          "response": { "type": "object" },
          "id": { "type": "string" },
          "assertions": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "assertion": { "type": "string" },
                "skipped": { "type": "boolean" },
                "error": {
                  "type": "object",
                  "properties": {
                    "name": { "type": "string" },
                    "index": { "type": "integer" },
                    "test": { "type": "string" },
                    "message": { "type": "string" },
                    "stack": { "type": "string" }
                  }
                }
              }
            }
          }
        }
      }
    },
    "transfers": {
      "type": "object",
      "properties": {
        "responseTotal": { "type": "integer" }
      }
    },
    "failures": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "error": {
            "type": "object",
            "properties": {
              "name": { "type": "string" },
              "index": { "type": "integer" },
              "test": { "type": "string" },
              "message": { "type": "string" },
              "stack": { "type": "string" },
              "checksum": { "type": "string" },
              "id": { "type": "string" },
              "timestamp": { "type": "integer" },
              "stacktrace": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "fileName": { "type": "string" },
                    "lineNumber": { "type": "integer" },
                    "functionName": { "type": "string" },
                    "typeName": { "type": "string" },
                    "methodName": { "type": "string" },
                    "columnNumber": { "type": "integer" },
                    "native": { "type": "boolean" }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

License:

This project is licensed under the MIT License