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

goto-clipboard-assist

v0.1.11

Published

Background daemon: Jira ticket ID → URL clipboard replacement and GitHub repo navigation

Readme

GoTo Clipboard Assist

A background daemon that monitors your clipboard and provides smart navigation for Jira ticket IDs and GitHub repository names.

Features

  • Jira: Copy a ticket ID like NG-66875 → clipboard is instantly replaced with the full browse URL
  • GitHub: Copy a partial repo name → get a notification to navigate directly to the matched repo(s)
  • System tray icon with menu for config and control
  • Config UI at http://localhost:6789 for all settings

Prerequisites

  • Node.js 18+
  • macOS or Windows (Linux not supported in v0.1)

Optional / Feature-specific

| Prerequisite | Required for | Install | |---|---|---| | gh CLI | GitHub repo matching | brew install gh / Windows | | terminal-notifier | Notification action buttons on macOS | brew install terminal-notifier |

Without gh CLI: GitHub feature is disabled; Jira still works.
Without terminal-notifier on macOS: notifications appear but action buttons (Open/View) are absent.

Installation

npm install -g goto-clipboard-assist

Usage

goto-clipboard-assist

The daemon starts in the background with a system-tray icon. Configure it at:

http://localhost:6789

Press Ctrl+C or select Quit from the tray to stop.

GitHub Feature Setup

  1. Install and authenticate gh CLI: gh auth login
  2. Open the config UI at http://localhost:6789
  3. Enable GitHub and configure options
  4. Restart the daemon

Configuration

All settings are stored at ~/.config/goto-clipboard-assist/config.json.

| Field | Default | Description | |---|---|---| | jiraBaseUrl | https://jira.ops.expertcity.com | Base URL for Jira instance (must be http/https) | | jiraPattern | [A-Z]+-\d+ | Regex pattern for Jira ticket IDs | | configPort | 6789 | Port for config web UI (restart required) | | pollingIntervalMs | 500 | How often to check clipboard (ms) | | openNotification | true | Show system notifications | | replaceClipboard | false | Replace clipboard contents with Jira URL on match (opt-in) | | github.enabled | false | Enable GitHub repo matching | | github.minMatchLength | 5 | Minimum clipboard text length to trigger GitHub check | | github.cacheIntervalMs | 900000 | Repo list cache TTL in ms (15 min). Changing this requires a restart. | | github.maxRepos | 1000 | Maximum repos to fetch from gh repo list | | github.org | "" | Org filter for gh repo list (empty = all accessible repos) |

Known Limitations

  • macOS and Windows only (no Linux in v0.1)
  • GitHub repo list is limited to maxRepos (default 1000); increase if repos are missing
  • Cache interval changes require a daemon restart to take effect
  • Repo names are owner-qualified (e.g. expertcity/my-repo) — partial match works against the full name