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

vibecat

v1.0.0

Published

A tray cat that pops up every minute holding a sign with a positive affirmation.

Readme

VibeCat

A cat pops up every half hour, holds up a sign that sends positive vibes, and leaves before you can argue with it.

VibeCat lives in your system tray. Every 30 minutes a small orange cat slides up from the bottom-right corner holding a hand-lettered sign with a positive affirmation on it. Ten seconds later it slides back down and leaves you alone.

That's it. That's the app.

Have a pawsome day :3

Install + run

npm install -g vibecat
vibecat

Or don't commit to anything:

npx vibecat

Node.js 18+. Windows tested. macOS and Linux "should work (tm)".

Run from source

git clone https://github.com/joeinvents/VibeCat.git vibecat
cd vibecat
npm install
npm start

Controls

  • Right-click the tray icon — show one now, pause, quit.
  • Double-click the tray icon — summon a cat on demand, for when you need it early.
  • Everything else still works. The overlay sets setIgnoreMouseEvents(true, { forward: true }), so your clicks pass straight through the cat to whatever's behind it. You cannot accidentally close the window you were working in because a cat was in the way.

Tuning

Constants at the top of src/main.js:

| Constant | What it does | | --- | --- | | INTERVAL_MS | How often the cat visits (default 30m) | | VISIBLE_MS | How long it stays (default 10s) | | SLIDE_MS | Animation duration — keep in sync with the CSS transition | | WIDTH / HEIGHT | Overlay size | | MARGIN | Gap from the screen corner |

Releasing

CI (.github/workflows/ci.yml) runs on every push/PR: installs on Ubuntu/Windows/macOS across Node 18 and 20, checks JS syntax, and dry-runs npm pack.

Publishing to npm (.github/workflows/publish.yml) happens when a GitHub Release is published, using the NPM_TOKEN repo secret. It refuses to publish if the release tag doesn't match package.json's version. To cut a release:

npm run release:patch   # or release:minor — bumps version, commits, tags, pushes
gh release create v$(node -p "require('./package.json').version") --generate-notes

(or create the release from the tag in the GitHub UI instead of gh release create).

License

MIT. It's a cat with a sign.