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

tracer-sh

v0.1.1

Published

Local-first debugging & analysis platform

Downloads

33

Readme

Tracer

npm version CI CodeQL

Local-first AI-powered observability platform.

During an incident, most time goes to switching between observability tools and gathering context — not fixing the problem. Tracer connects your providers to a single AI chat interface so you find the root cause in one place.

Debug

Chat with an AI agent that queries your providers in real-time and finds root causes — all from a single conversation.

  • Natural language investigation
  • Live query execution with inline charts
  • Post-mortem reports — download as Markdown to share
  • Share investigations as PNG — drop the exported image back into Tracer to re-open the analysis
  • Agent memory across sessions
  • Session history and cost tracking

Debug page

Settings

Configure providers, LLM credentials, agent behavior, and memory. All data is stored locally — nothing leaves your machine except the API calls you configure.

  • Anthropic (Claude) and Google (Gemini) API keys
  • Data provider setup with connectivity tests
  • Thinking budgets and step limits
  • Agent memory management

Settings page

How it works

┌─────────┐       your API keys         ┌──────────────────┐
│         │ ◄──────────────────────────►│  Observability   │
│ Tracer  │                             │  Providers       │
│  local  │       your API keys         ├──────────────────┤
│         │ ◄──────────────────────────►│  LLM Providers   │
└─────────┘                             └──────────────────┘

Everything runs on your machine. Your data stays local in a SQLite database. Tracer talks directly to your provider and LLM APIs using your own API keys — no intermediary servers, no data leaves your machine except API calls you control.

Install

Requires Node.js 20+.

npx tracer-sh

Or install globally:

npm install -g tracer-sh
tracer-sh

Open http://localhost:3579, go to Settings to add your API keys and choose an LLM — done.

Supported Providers

Data: New Relic (NRQL via NerdGraph), Google Cloud (Logs, Traces, Metrics, Errors)

LLM: Anthropic (Claude), Google (Gemini)

Uninstall

npm uninstall -g tracer-sh

To also remove your local database (settings, sessions, API keys):

rm -rf ~/.tracer

Troubleshooting

| Problem | Fix | |---------|-----| | better-sqlite3 build fails | macOS: xcode-select --install / Linux: sudo apt install build-essential python3 | | Port in use | TRACER_PORT=3580 tracer-sh | | No LLM responses | Add an API key in Settings |

Contributing

Contributions are welcome! There are two main ways to help:

Report bugs or request featuresopen an issue. Include steps to reproduce for bugs, or a clear description for feature requests.

Submit a code change:

  1. Fork this repo
  2. Create a branch (git checkout -b fix/my-fix)
  3. Make your changes and commit
  4. Push to your fork (git push origin fix/my-fix)
  5. Open a pull request against master

All PRs require approval before merging.

License

Elastic License 2.0 — free for any use, including internal business use, modification, and redistribution. You may not offer it as a hosted or managed service competing with Tracer.