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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@schwabyio/xrun

v3.3.0

Published

Postman Extended Runner

Readme

xRun Image

GitHub license npm version code coverage

Table of Contents

xRun - CLI Runner For Postman

Overview

xRun is a command line interface (CLI) app that extends Newman to enable your organization to run Postman tests with speed and at scale.

Features

  • Direct support for xtest.
  • Run Postman tests in parallel by setting the limitConcurrency configuration.
  • Run tests locally or as part of Continuous Integration (CI) with your automated build server of choice.
  • Generates clean html reports that allow you to quickly filter and zero in on test failures.
  • Generate junit reports (provided by Postman's Newman).
  • Configurable settings.json file with command line override capability.
  • By default, all folders (and tests within) are run. You can exclude folders using an exclusion list.
  • Single out one or more tests to run by specifying a CSV list of test cases and/or directories from the command line.

Installation Steps

  1. Install Node.js (version >= 20) (recommended to install Node.js using node version manager)
  2. Install (and also to update) xRun:
npm install -g @schwabyio/xrun

Uninstall Steps

  1. Uninstall xRun
npm uninstall -g @schwabyio/xrun

xRun Project Repo Structure

The xRun tool requires a Postman project repo to be in the following structure:

└── <your-project-repo>/
    ├── <directory1-with-postman-json-files>/
    ├── <directory2-with-postman-json-files>/
    ...
    ├── <directoryN-with-postman-json-files>/
    └── xrun/
        ├── exclude-list.json
        └── settings.json

Note: You can only run the xrun CLI command from the root directory of <your-project-repo>.

Example xRun Project Repo

Example repo in structure required by xRun (also runnable - try it out): xrun-example-repo

Usage

% xrun
__________________________________________________________________________________________________________________________________
                                                                                                                                  
                                                         xRun Ver. 3.3.0
__________________________________________________________________________________________________________________________________


   USAGE: xrun <program-command> [--settingsKey settingsValue]


              <program-command> - Required. Valid program-command values are:

                                          g[et]  - GET a list of all Postman collections from the project.

                                                   NOTE: collections from xrun/exclude-list.json ARE NOT included.

                                          a[ll]  - Run ALL Postman collections from the project.

                                                   NOTE: collections from xrun/exclude-list.json ARE NOT included.

                 <collectionAndOrDirectoryList>  - Run one or more specific Postman collections from the project by
                                                   providing a comma seperated list of COLLECTION NAMEs and/or DIRECTORY NAMEs.

                                                   NOTE: collections from xrun/exclude-list.json ARE included.

    --settingsKey settingsValue - Optional. Any number of settings overrides.

__________________________________________________________________________________________________________________________________

Settings

All available settings (settings.json) are documented here.

Settings Order of Precedence (lowest to highest):

  1. Default value
  2. Local settings.json override
  3. Environment variables override
  4. Command line argument override