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

tapr

v0.1.3

Published

Tapper (tapr) is a node.js tap test runner which allows stdout and stderr mixed in with the tap output and also presents assert output in a more abbreviated fashion. Tapper also optionally adds color to the output. Core based on Isaac Z Schlueter original tap runner. Because of Isaac's modular design Tapr/Tapper customizes the runner but uses all the original tap components.

Downloads

26

Readme

Tapper

Tapper (aka tapr) is a node.js tap runner which allows stdout and stderr mixed in with the tap output. Also tapper adds color to the output. Core based on Isaac Z Schlueter original tap runner.

Goals

  • More concise formatting of tap output (easier to find what you care about)
  • Improve ability to write to stdout and stderr from tests or code
  • stdout/stderr is muted for successful tests, but displayed for files with failing tests
  • Add optional colorized output

Installing

  npm install tapr  # install locally
  # OR
  npm install -g tapr  # install globally

OR

Add to your project package.json

  "devDependencies": {
    "tapr" : "~0.1.0"
    }

Then npm install your package with dev dependencies from the project directory

  npm install

OR

Pull from github - http://github.com/jeffbski/tapper

Usage

  node_modules/.bin/tapr.js fileOrDir   # if installed locally
  #OR
  tapr fileOrDir  # if installed globally
  #
  tapr                                     # display usage
  tapr --help                         # display usage
  tapr --version                    # display version
  tapr --no-color fileOrDir   # run without color output

Status

  • v0.1.0 - 2011-11-28 - tapr - change bin/tapper to bin/tapr for convenient typing. tapr is also short for tap runner
  • v0.0.6 - 2011-11-22 - Tapper is based on the original tap code with minor changes. The runner will evolve with features as time permits but appears to be fully functional.

Screenshots

Successful example where all tests are passing

Stderr and stdout is muted except for files which have a failing test

success-tapr

Failure example with some failures and stdout

  • Green - successful tests and files
  • Red - failed tests and files
  • Blue - test names

failed-tapr

Original tap runner success

success-tap

Original tap runner failure

failed-tap

License

Contributors

  • Modifications by author: Jeff Barczewski (@jeffbski)
  • Original code Isaac Z. Schlueter [email protected] http://blog.izs.me

Contributing

  • Source code repository: http://github.com/jeffbski/tapper
  • Ideas and pull requests are encouraged - http://github.com/jeffbski/tapper/issues
  • You may contact me at @jeffbski or through github at http://github.com/jeffbski