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

@mariozechner/chatoly

v1.0.4

Published

YouTube chat overlay for macOS

Readme

Chatoly

A native macOS YouTube chat overlay application that displays YouTube live stream chat in a beautiful, always-on-top window. Features a clean SwiftUI interface with real-time message streaming directly from YouTube's API. Perfect for live-streamers who want to monitor chat without switching windows.

https://github.com/user-attachments/assets/ecc489bd-8649-4321-aa45-ccf3c0eb5415

Watch this thing get built from scratch in 2 hours

Installation

npm install -g @mariozechner/chatoly
chatoly

Features

  • Native SwiftUI Interface - Beautiful, clean chat display with smooth animations
  • Real-time Streaming - Direct connection to YouTube's chat API for instant message updates
  • Smart Message Display - Avatar thumbnails, author names, badges, and special message types (memberships, super chats)
  • Auto-scroll - Automatically scrolls to new messages with smooth animations
  • Frosted Glass Background - Elegant translucent design that integrates with macOS
  • Always on top - Chat window stays above all other applications
  • Movable & Resizable - Position and size the chat window exactly where you need it
  • Performance Optimized - Limits message history and efficiently handles high-volume chats
  • Connection Status - Visual indicators showing connection state and message count

Development

Building

# Build debug mode (default)
./build.sh

# Build release mode
./build.sh release

# Clean and build
./build.sh clean

# Build and run the main app
./build.sh run

# Build release and run
./build.sh release run

# Build for distribution (signs and notarizes both executables)
./build.sh notarize

Executables

The project builds two executables:

  1. chatoly - The main GUI application with the overlay window
  2. chatoly-stream - A CLI tool for streaming YouTube chat to console (useful for debugging/testing)

After building, executables are located in:

  • Debug: ./.build/debug/chatoly and ./.build/debug/chatoly-stream
  • Release: ./.build/release/chatoly and ./.build/release/chatoly-stream
# Run the stream CLI tool after building
./build.sh
./.build/debug/chatoly-stream

# Or use Swift directly
swift build
swift run chatoly-stream

For notarization to work, you need an Apple Developer account with a valid Developer ID certificate. Set the NOTARY_TOOL_PASSWORD environment variable with an app-specific password generated from your Apple ID account. The build script expects your certificate to be named "Developer ID Application" in your keychain. You'll also need your Team ID from your Apple Developer account. Without these, use the regular build commands which produce unsigned binaries that work locally but may trigger Gatekeeper warnings when shared.

Requirements

  • macOS 13.0+
  • Swift 6.0+