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

@filecrop/reveil

v0.1.2

Published

A quiet, elegant master switch that wakes your curated arsenal of tools.

Readme

reveil

npm version license

réveil (French) — awakening, alarm clock.

A quiet, elegant master switch that wakes your curated arsenal of tools.

reveil

One command. Every package manager you care about, updated in parallel. Framed output you can actually read. Version deltas so you know what changed. A summary table that tells the whole story at a glance.


The ritual

▌ Preparing the arsenal
  brew            4.2.0
  rustup          1.27.1

▌ Awakening in parallel

▌ Instrument output

┌─[ brew ]
│ ==> Upgrading 3 outdated formulae...
│ ...
└─

▌ Summary
  TOOL          VERSION                STATUS
  ──────────────────────────────────────────
  brew          4.2.0 → 4.3.0          ↑ updated
  rustup        1.27.1                 = current

  1 ↑ updated  ·  1 = current

Quick start

Install it once:

npm install -g @filecrop/reveil

Then build your arsenal and awaken it:

reveil detect     # scan this machine and add the tools it finds
reveil            # update everything in parallel

That's it. Two commands and your environment is in sync.

Prefer not to install globally? Run it on demand:

npx @filecrop/reveil detect
npx @filecrop/reveil

Published as @filecrop/reveil; the installed command is reveil. Requires Node.js 18 or newer.


Usage

reveil                    # Awaken the arsenal — run all enabled jobs
reveil run [job…]         # Run all jobs, or only the named ones
reveil detect             # Scan this machine for package managers
reveil list               # Show the arsenal and last-run state
reveil add                # Add a job to the arsenal interactively
reveil remove <job>       # Remove a job from the arsenal
reveil schedule           # Install an OS-native recurring cadence
reveil unschedule         # Remove the recurring cadence
reveil daemon             # Run a foreground in-memory scheduler
reveil config             # Print the config file path

Configuration

Config lives at ~/Library/Application Support/reveil/config.json (macOS) or ~/.config/reveil/config.json (Linux). It's JSON — no special syntax, no lock-in, syncs cleanly across machines.

{
  "version": 1,
  "jobs": [
    {
      "name": "brew",
      "run": {
        "darwin": "brew upgrade",
        "linux": "brew upgrade"
      },
      "version": "brew --version",
      "size": "/opt/homebrew",
      "enabled": true
    },
    {
      "name": "rustup",
      "run": "rustup update",
      "version": "rustup --version",
      "enabled": true
    }
  ],
  "schedule": {
    "cadence": "daily",
    "time": "09:00"
  }
}

run can be a plain string (all platforms) or a { darwin, linux, win32 } object. Jobs without a command for the current platform are silently skipped — so one config file works everywhere.

version and size are optional. Size tracking uses du -skL and is Unix-only; the column is omitted on Windows.


Scheduling

reveil schedule      # interactive — sets cadence + time, installs OS-native timer
reveil unschedule    # removes it

On macOS this installs a launchd plist in ~/Library/LaunchAgents. The timer survives reboots and costs nothing when idle. Linux (#1) and Windows (#2) scheduling backends are planned against the same Scheduler interface. Contributions welcome.

For development or when you want explicit foreground control:

reveil daemon        # non-persistent foreground scheduler; stops when you close the terminal

Platform support

| Feature | macOS | Linux | Windows | |-----------------|-------|-------|---------| | Run jobs | ✓ | ✓ | ✓ | | Version deltas | ✓ | ✓ | ✓ | | Size deltas | ✓ | ✓ | — | | OS scheduling | ✓ | stub | stub |


Philosophy

The world has enough noisy CLIs. reveil is the antithesis of command-line fatigue: structured, deliberate, understated. It doesn't shout when things go wrong. It doesn't celebrate when things go right. It simply synchronizes your environment and gets out of the way.

Configure once. Awaken daily.


License

MIT © jamubc