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

noteback

v1.1.0

Published

Annotate AI docs & copy/share feedback for Claude, ChatGPT & co. Zero-backend Chrome extension (Manifest V3) + `npx noteback wrap` feedback canvas + agent skill.

Readme

Noteback

Noteback lets you review local AI-generated HTML documents — specs, plans, design docs — right in your browser. Highlight a passage, attach a comment anchored to that exact quote (or leave a note on the whole document), then copy your feedback as Markdown to paste back to the AI, or save a self-contained "feedback canvas" — one HTML file with your highlights and comments baked in that anyone can open and comment on without installing anything.

It runs 100% locally: no server, no account, no telemetry, no network calls.

note it → send it back.

What it looks like

1. Select text → leave a comment. A floating button opens a composer anchored to the exact quote.

Selecting a passage and writing a comment

2. The sidebar lists every comment — anchored notes and notes on the whole document — and lets you copy the feedback or save the canvas.

The Noteback sidebar listing comments

Comments use text-quote anchoring (W3C / Hypothesis style), so highlights survive minor edits; a lost quote becomes an unanchored note instead of disappearing. Copy feedback produces clean Markdown with line references; Save exports the canvas with comments, a clean copy of the original, or a print-ready PDF.

Install

You can use Noteback two ways — they share the same annotation engine. The essentials are below; see docs/install.md for every flag and option.

As an agent skill (no extension needed)

So an AI coding agent (Claude Code, Codex, …) can hand you documents that are already annotatable: it writes the doc as HTML, wraps it with the CLI, and you comment in the browser, then paste the Markdown back to iterate.

npx skills add alekkowalczyk/noteback   # pull the skill from GitHub → ./.claude/skills
npx noteback install-skill              # or install from npm → ~/.agents/skills + a ~/.claude symlink

The agent then runs npx noteback wrap doc.html to turn any HTML into a canvas.

As a Chrome extension

  1. Clone this repo.
  2. Open chrome://extensions and enable Developer mode (top-right).
  3. Click Load unpacked and select the repo root (the folder with manifest.json).
  4. To annotate file:// docs, open the extension's Details page and enable "Allow access to file URLs." (localhost / 127.0.0.1 are opt-in — switch them on from the extension popup; they're off by default.)

Docs

  • docs/install.md — full install & CLI reference: every skills add / install-skill / wrap flag, the extension steps, and permissions.
  • docs/design.md — the full design, motivation, positioning, privacy posture, and the one-runtime / two-modes architecture.
  • CONTRACTS.md — runtime module API, State schema, runtime namespace, and the canvas file format.
  • skills/noteback/SKILL.md — the agent skill itself.
  • CLAUDE.md — engineering notes, gotchas, permissions, and the two-registry distribution model (GitHub serves the skill, npm serves the CLI).

Development

npm test   # runtime unit tests on the Node built-in runner (no deps, no framework)

License

MIT.