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

rebuzzer

v1.3.1

Published

Rebuzzer is a fullscreen button in the browser which executes a command on the server by clicking on it

Readme

Rebuzzer

Rebuzzer is a fullscreen button in the browser which (re)executes a command on the server by clicking on it.

Internally Rebuzzer is using a persistent WebSocket connection to ensure low latency.

Getting Started

Just install rebuzzer by

npm install -g rebuzzer

And start it on the machine you want the command to be executed on by

rebuzzer --command "echo do something"

This will start rebuzzer on its default port. You can then navigate your web browser on any device in the network to http://youserver:7000 and tap the page for the command to be executed.

When rebuzzer is executed repeatedly it will automatically kill the process started when the previous command was run and then rerun the command again.

Options

  • Rebuzzer can take multiple commands to be executed:
rebuzzer --command "echo FIRST" --command "echo SECOND"
  • To make the buzzer inactive for n milliseconds after previous activation:
rebuzzer --interval 500
  • To rerun commands without waiting for the termination of previously started child processes:
rebuzzer --nowait
  • You can tweak the appearance by providing a color in RGB format:
rebuzzer --color 255,255,0
  • You can also change the name of the buzzer:
rebuzzer --name MyBuzzer
  • The port Rebuzzer is listening to can be changed by:
rebuzzer --port 8080

##Example

rebuzzer --port 8080 --color 255,255,0 --name "Restart Script" --command "node somescript.js" --command "rm -rf temporary; node somescript.js" --command "sleep 2; node somescript.js &"

This example will run three commands simultaneously:

  • The first command will start the node somescript.js as a child process.
  • The second one will first remove file temporary, then start the node somescript.js as another child process.
  • The third command will start node somescript.js as a separate background process.

When the buzzer is klicked repeatedly Rebuzzer will try to recursively shutdown all child processes by requesting graceful termination before it attempts to restart all 3 commands again. Notice Rebuzzer will fail to kill the third process due to the node script within it being started as a separate process.

During the shutdown of all 3 commands the buzzer won't trigger.

##Security Please notice anyone on the network being able reach the host will also be able to trigger command restarts. Use with caution.