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

script-run

v0.1.6

Published

Run arbitrary scripts in parallel alongside pretty output from their log files

Downloads

19

Readme

script-run 🌈

npm version Node CI

Run arbitrary scripts in parallel alongside pretty output from their log files

$ npx script-run slow_script 'node dummy_script' logging_script:logging_script.log
⠴ tests/fixtures/slow_script  (7.282s)
  › doing something slow....
    almost done...
✔ node tests/fixtures/dummy_script
✔ tests/fixtures/logging_script  (0.203s)

All commands succeeded.

Features

  • Run any number of arbitrary shell scripts in parallel via child processes
  • Stream live logs from each process
  • Optionally provide a separate log file to tail

Installation

You can install script-run globally via:

npm install -g script-run
# or
yarn global add script-run

or locally without including -g or global.

You can also run without manual installation, via npx:

npx script-run

Usage

Provide commands as positional arguments to run them in parallel. For example:

$ script-run 'git gc' 'echo hi'
✔ git gc (0.804s)
✔ echo hi

All commands succeeded.

This would run the git gc and echo hi commands in parallel subprocesses and stream any stdout/stderr to the console while they run.

If we have a script that logs to a known file, we can substitute the command output for that:

$ script-run logging_script:logging_script.log --persistent-output
✔ tests/fixtures/logging_script  (0.201s)
  › Output from tests/fixtures/logging_script.log:
    My log line, i = 5
    My log line, i = 6
    My log line, i = 7
    My log line, i = 8
    My log line, i = 9

All commands succeeded.

Options

$ script-run --help
Options:
  --help               Show help                                       [boolean]
  --version            Show version number                             [boolean]
  --verbose            Run with verbose logging       [boolean] [default: false]
  --log-lines          Number of log lines to show at once per command
                                                           [number] [default: 5]
  --color              Whether to show colors in the terminal
                                                       [boolean] [default: true]
  --timers             Whether to show execution times for scripts
                                                       [boolean] [default: true]
  --persistent-output  Whether to persist output of log lines after command
                       success                        [boolean] [default: false]

Advanced

There's a js API exported which can be called from a wrapper script if desired, and aims to mimic the cli as closely as possible. Check the code to learn more (no documentation for this currently).