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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ccnoti

v0.2.0

Published

Cross-Channel Notification CLI with sound, voice, and desktop alerts

Readme

ccnoti

Cross-Channel Notification CLI with sound, voice, and desktop alerts.

Features

  • 🔊 Sound Effects: Audio playback with system sounds
  • 🗣️ Voice Announcements: Text-to-speech notifications
  • 📬 Visual Notifications: Native desktop notifications
  • ⚙️ Configurable: Customizable via .ccnotirc configuration file

Installation

npm install -g ccnoti
# or
npx ccnoti [options]

Quick Start

Basic Usage

npx ccnoti -d -m "Task complete"     # Desktop notification (with sound)
npx ccnoti -d -v  -m "All tests pass" # Sound + Desktop notification
npx ccnoti -v -m "Deploy complete"   # Voice only
npx ccnoti -s                        # Sound only
npx ccnoti -s -V 0.3                # Sound with low volume (30%)
npx ccnoti -s -V 1.0                # Sound with max volume

Command Line Options

| Option | Alias | Description | Example | |--------|-------|-------------|---------| | --sound | -s | Play sound effect | --sound | | --voice | -v | Enable text-to-speech | --voice | | --desktop | -d | Show Desktop notification | --desktop | | --soundFile <path> | - | Sound file path to play | --soundFile=/System/Library/Sounds/Glass.aiff | | --volume <num> | -V | Sound volume (0.0-1.0) | --volume 0.5 | | --message <text> | -m | Notification message text | --message "Task done" | | --config <path> | -c | Path to config file | --config my-config.json |

Configuration File

Create a .ccnotirc file in your project root (automatically loaded):

{
  "sound": true,
  "voice": true,
  "desktop": false,
  "soundFile": "/System/Library/Sounds/Glass.aiff",
  "volume": 0.5
}

Or specify a custom config file with -c:

npx ccnoti -c my-config.json -m "Custom config"

Note: Command line options always override configuration file settings.

Integration with Claude Code Hooks

You can use ccnoti with Claude Code hooks to get notifications during your coding sessions. Add the following to your Claude Code configuration:

{
  "hooks": {
    "Notification": [
      {
        "matcher": "",
        "hooks": [
          {
            "type": "command",
            "command": "npx ccnoti@latest --sound --voice --desktop -m 'Waiting for input'"
          }
        ]
      }
    ],
    "Stop": [
      {
        "matcher": "",
        "hooks": [
          {
            "type": "command",
            "command": "npx ccnoti@latest --sound --voice --desktop -m 'Task completed'"
          }
        ]
      }
    ]
  }
}

This configuration will:

  • Notification hook: Play a notification when Claude is waiting for your input
  • Stop hook: Play a notification when Claude has completed a task

You can customize the message and notification types (sound, voice, desktop) according to your preferences.

Platform Support

  • macOS/Windows: Full support (sound, voice, desktop notifications)
  • Linux: Desktop notifications only

Text-to-Speech

  • macOS: System voices (e.g., Samantha, Daniel, Kyoko). List all: say -v ?
  • Windows: SAPI voices (varies by system)
  • Linux: Requires Festival (apt-get install festival)

Requirements

  • Node.js >= 22
  • Supported platforms:
    • macOS: sound, voice, notifications
    • Windows: sound, voice, notifications
    • Linux: notifications only

Dependencies

License

MIT License @kira_puka@Memory Lovers, LLC

Contributing

Issues and PRs welcome at github.com/memorylovers/ccnoti