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

crazy-alerts

v1.4.1

Published

macOS-only CLI: 20 overlay alerts (ambulance, siren, confetti, checkmark, countdown, fire, klaxon, danger, strobe, rocket, clap, rainbow, banner, pill, dnd, pomodoro, reminder, typewriter, matrix, explosion). Run from terminal or CI.

Readme

crazy-alerts

macOS-only CLI: 20 overlay alerts from the terminal. Uses native Swift; works during screen sharing.

Install

npm install -g crazy-alerts

Commands

ambulance

Shows a moving ambulance + message at the bottom of the screen, with an animated siren GIF (and a copy in the top-right corner). An alarm sound plays for the duration (system sound or optional assets/alarm.wav).

ambulance "Test failed"
ambulance "Build failed"
# or with env
AMBULANCE_MESSAGE="Deploy done" ambulance

Optional env: AMBULANCE_DURATION, AMBULANCE_FONT_SIZE, AMBULANCE_BORDER_INSET, AMBULANCE_ASSETS_DIR. Assets (siren GIF, optional alarm) live in assets/ and are included in the package.

confetti

Full-screen confetti celebration with a success sound (system “Hero” or optional assets/success.wav).

confetti
# inline overrides (override env and defaults)
confetti --particle-count=500 --duration=10
confetti -c 500 -d 8 --gravity=0.3
# or env
CONFETTI_PARTICLE_COUNT=500 CONFETTI_DURATION=10 confetti

Optional inline flags: --particle-count / -c, --duration / -d, --gravity / -g, --velocity / -v, --size-min, --size-max, --spawn-rate / -r. Optional env: same names. Inline args override env.

siren

Full-screen red pulsing alert with optional message and looping alarm sound.

siren "Server down"
SIREN_DURATION=15 siren "Critical"

Optional env: SIREN_MESSAGE, SIREN_DURATION, SIREN_FONT_SIZE, SIREN_ASSETS_DIR. Uses assets/alarm.wav if present, else system "Glass".

checkmark

Big green checkmark with optional message and success sound.

checkmark "Build passed"
CHECKMARK_DURATION=6 checkmark "Deploy done"

Optional env: CHECKMARK_MESSAGE, CHECKMARK_DURATION, CHECKMARK_FONT_SIZE, CHECKMARK_ASSETS_DIR. Success sound: assets/success.wav or "Hero".

countdown

Full-screen countdown (e.g. 5, 4, 3, 2, 1, Go!) with optional message and sound at zero.

countdown
countdown 10
countdown 5 "Launch in..."

Optional env: COUNTDOWN_START, COUNTDOWN_MESSAGE, COUNTDOWN_DURATION_AFTER_ZERO, COUNTDOWN_SOUND_AT_ZERO, COUNTDOWN_FONT_SIZE, COUNTDOWN_ASSETS_DIR.

fire

Full-screen flame effect with message (failure / drama alert).

fire "Deploy failed"
FIRE_DURATION=12 fire "Server down"

Optional env: FIRE_MESSAGE, FIRE_DURATION, FIRE_PARTICLE_COUNT, FIRE_FONT_SIZE, FIRE_ASSETS_DIR.

More alerts

| Command | Description | Example | |--------|-------------|--------| | klaxon | Red/black flash + short beeps | klaxon "Stop!" | | danger | Dark overlay + ⚠️ (or 💀) + message, alarm | danger "P0" | | strobe | White/red alternating flash | strobe "Alert" | | rocket | 🚀 moving up + message, success sound | rocket "Shipped!" | | clap | 👏 + “Well done”, success sound | clap | | rainbow | Slow rainbow gradient + message | rainbow "All green" | | banner | Scrolling ticker (top/bottom) | banner "Build in progress..." | | pill | Small centered pill badge | pill "Deploy started" | | dnd | Dim overlay + “Do not disturb” (stays until killed if duration=0) | dnd "In a meeting" | | pomodoro | “Time for a break” + ☕, gentle sound | pomodoro | | reminder | Big message only, optional sound | reminder "Drink water" | | typewriter | Message types out with cursor, beep at end | typewriter "Done." | | matrix | Falling green characters + optional message | matrix "Build..." | | explosion | Single burst from center + optional message | explosion "Merge to main" |

Each supports env vars (e.g. *_MESSAGE, *_DURATION, *_FONT_SIZE); see USAGE.md.

Requirements

  • macOS (Darwin)
  • Node.js ≥ 14
  • Swift (included with Xcode / Xcode Command Line Tools)

License

MIT