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

nonotify

v0.1.14

Published

nnt CLI for Telegram notifications

Downloads

1,135

Readme

nnt

А terminal-first notifier built with incur. Use it to send yourself messages from the terminal, including from coding agents and CI jobs.

Install

npm install -g nonotify

After installation, nnt is available globally.

Add profile

nnt profile add

Flow:

  1. Enter profile name.
  2. Enter Telegram bot token.
  3. Send any message to your bot in Telegram.
  4. CLI captures chatId, shows connected Telegram username, stores the profile, and sends a confirmation message back to chat.

The first profile becomes default profile automatically.

Send messages

Send with the default profile:

nnt "Cool message using nnt"

Send with a specific profile:

nnt "some urgent message" --profile=important

Typical agent usage:

# User: Complete a long task, while I'm away, when finish notify me via nnt
# Agent: *working*
# Agent after task completed:
nnt "Very long task finished. All tests passed, check out result"

Install skills

You can install agent skills for your agents:

nnt skills add                                # install skills globally
cp ~/.agents/skills/nnt-* ./.agents/skills/   # install in current project

Manage profiles

List profiles:

nnt profile list

Show the default profile:

nnt profile default

Set the default profile:

nnt profile default important-profile

Edit a profile (rename, token/chat update, reconnect):

nnt profile edit
nnt profile edit important-profile
nnt profile edit important-profile --newName=critical-profile
nnt profile edit critical-profile --botToken=123:abc
nnt profile edit critical-profile --reconnect

nnt profile edit starts interactive mode and prompts you to select a profile first.

Delete profile:

nnt profile delete critical-profile

By default, profile commands print human-readable output in terminal. For strict, machine-friendly output, use format flags:

nnt profile list --format json
nnt profile default --format=md

OpenCode plugin

There is also the nonotify-opencode plugin that automatically sends you important notifications via nnt when you use OpenCode. Learn more here.

Config location

Config is stored as JSON at <config-dir>/nnt.json.

  • Default config dir: ~/.config/nnt
  • Default config path: ~/.config/nnt/nnt.json
  • To override it, set NNT_CONFIG_DIR

Example:

export NNT_CONFIG_DIR="$HOME/.custom-config/custom-nnt"

If you run coding agents in a container, mount the config directory as read-only:

services:
  app:
    environment:
      - NNT_CONFIG_DIR=/var/nnt
    volumes:
      - ${HOME}/.config/nnt:/var/nnt:ro

API

You can integrate nnt into your application. Useful when buildling extensions for coding agents. The Notifier automaticly loads profile information, so you can send messages easily.

import { Notifier } from "nonotify";

const notifier = new Notifier();

await notifier.send({
  message: "Build finished successfully",
});

Notifier loads config using EnvConfigLoader by default, but you can also pass profile data directly.

import { Notifier } from "nonotify";

const notifier = new Notifier({
  defaultProfile: "dev",
  profiles: [
    {
      name: "dev",
      botToken: process.env.TELEGRAM_BOT_TOKEN!,
      chatId: process.env.TELEGRAM_CHAT_ID!,
    },
  ],
});

await notifier.send({
  profile: "dev",
  message: "Task completed",
});

console.log(notifier.profiles);

Monorepo release flow

This repository is an npm workspaces monorepo with automated releases via Changesets.

  • Every user-facing package change should include a changeset:
npx changeset
  • Release automation behavior:
    • on main, GitHub Actions creates/updates a release PR with version bumps and changelogs;
    • after merging that PR, Actions publishes changed packages to npm;
    • Git tags and GitHub Releases are created automatically.