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

issue-tracker

v1.0.1

Published

A tool to track opened issues status for you

Readme

Issue-Tracker

A tool to track opened issues status for you


Overview

issue-tracker is a tool designed to help developers track the status of issues referenced in their code comments. It integrates easily into your CI/CD pipeline, notifying you when a referenced issue is closed, prompting you to take necessary actions like upgrading dependencies or removing workarounds.

By scanning your source files for specially formatted comments, issue-tracker ensures that you're always up-to-date on the external issues that impact your project.


Features

  • Track Issue Status: Detect and monitor the status of issues linked in your source code.
  • CI/CD Integration: Return an error exit code if any referenced issue is closed, making it perfect for automated workflows.
  • Customizable Comment Format: Supports TODO and FIXME comment styles with issue links.
  • Source-Aware: Scans source files for relevant comments to provide actionable insights.

Installation

npm install -g issue-tracker

Usage

Running the Tool

To run issue-tracker in your project, simply execute:

Usage: issue-tracker [options] <paths>

A tool to notify when tracking issue evolves and could be fixed in your project

Options:
  -V, --version               output the version number
  --no-warning                exit code != 0 on warnings
  -a, --all                   Show all the issues found (default: false)
  --github-token <string...>  Github API tokens for higher rate limit (provide multiple values to workaround the rate limit) (default: [])
  -h, --help                  display help for command

Comment Format

Add comments in your source code using the following format:

// FIXME: [Issue 1](https://github.com/angular/angular/issues/51683)
// Action: Upgrade Angular when available

or

/* TODO: [Issue 2](https://github.com/angular/angular/issues/51639) */

The tool will parse these comments, check the status of the linked issues, and report any that have been closed.


Example Output

  ___                      _                  _             
 |_ _|___ ___ _   _  ___  | |_ _ __ __ _  ___| | _____ _ __
  | |/ __/ __| | | |/ _ \ | __| '__/ _` |/ __| |/ / _ \ '__|
  | |\__ \__ \ |_| |  __/ | |_| | | (_| | (__|   <  __/ |
 |___|___/___/\__,_|\___|  \__|_|  \__,_|\___|_|\_\___|_|

3 actions required on a total of 3 issues found:

◉ angular/angular: #51616 have been closed (https://github.com/angular/angular/issues/51616)
  message: Hello

◉ angular/angular: #51683 have been closed (https://github.com/angular/angular/issues/51683)
  action: upgrade angular when available

◉ angular/angular: #51639 have been closed (https://github.com/angular/angular/issues/51639)

Contributing

Contributions are welcome! If you have ideas for improvements or new features, feel free to open an issue or a merge request.


License

This project is licensed under the MIT License.


Start tracking your issues effortlessly with issue-tracker because staying informed should be simple. 🚀