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

trr

v1.0.4

Published

A convenient automated test re-runner

Downloads

25

Readme

trr

A convenient automated test re-runner

Who wants to save a change to a module or a test, then swap back to your terminal and manually invoke a test run? Ew.

Iterate faster by letting your tests automatically re-run themselves whenever you make changes to your local project.

Kind of like jest --watch, except for any test harness, script, or command.

Install

npm i -g trr

Usage

trr is a CLI aid to your existing tests and scripts, automatically re-running a given command when a (qualifying) file changes in your project.

While your tests are running, filesystem changes will be ignored until the current run is complete, meaning your tests can include filesystem mutations without recursively calling itself.

For example: say you normally run your tests with npm test. From your project directory, just run: trr npm test to start the watcher. Whenever a file changes, npm test will re-run and print the result.

Preferences + CLI flags

The following preferences are available by creating a ~/.trr.json file with the following optional properties:

  • ignore (array of strings) ignore each match; trr includes node_modules + .git by default
    • Ignore uses a simple string match, so ignoring foo will ignore some/foolish/project
    • To ignore multiple things, use the tag multiple times; example: `--ignore stuff --ignore
  • runOnStart (bool, default: false) run the specified script immediately upon starting instead of waiting for a watcher event
  • shortcuts experimental! (object) add shortcut scripts with variable replacement based on positional CLI args
    • Example: add "shortcuts": { "run": "echo $0 $1" }, then trr run hello world will print hello world to stdout on every file change
    • On *nix systems, you can also include pipes; for example, execute a single TAP-compatible Node test and pipe to a reporter like so: "shortcuts": { "run": "node $0 | tap-spec" }
  • timeout (number, default: 3) during a run, the number of seconds to wait for console output before automatically canceling
  • watch (string, default: current directory) specify a (sub)directory to watch
  • verbose (bool, default: false) enable verbose logging

The following CLI flags are also available:

  • --ignore, -i (string) ignore each match; trr includes node_modules + .git by default
    • Ignore uses a simple string match, so ignoring foo will ignore some/foolish/project
    • To ignore multiple things, use the tag multiple times; example: --ignore stuff --ignore more-stuff
  • --queue, -q (default: disabled) queue up the next run if a matching filesystem change occurs during the current run; can only enqueue one run at a time
  • --runOnStart, -r (default: false) run the script immediately upon starting instead of waiting for a watcher event
  • --timeout, -t (number, default: 3) during a run, the number of seconds to wait for console output before automatically canceling
  • --watch, -w (default: current directory) specify a (sub)directory to watch
  • --verbose, -v (default: disabled) enable verbose logging

Note: Where a setting conflicts, the CLI arg will have priority over the preferences file.

Use it for more than just tests

While trr was designed to re-run test suites, it will accept and run any command. Use it to automatically lint your codebase, run spellchecks on docs, or anything else you'd like to run on repeat while you're working on your project.

Examples

  • Iterate on a specific unit test:
    • trr node test/my-test.js
  • Run all tests, while watching only your tests/ dir:
    • trr npm test --watch tests
  • Don't re-run tests when you change your tests/ dir:
    • trr npm test --ignore tests
  • Allow changes to queue up your next run while the current run is still going:
    • trr npm test --queue
  • Continually lint your src/ dir:
    • trr npm run lint --watch src
  • Spellcheck your docs:
    • trr ./spellcheck --watch docs
  • Chain together multiple commands (using quotes)
    • trr 'npm run lint && ./spellcheck'