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

markloop

v0.1.0

Published

MarkLoop is a local CLI and browser UI for iterative Markdown review.

Readme

MarkLoop

markloop is a local CLI plus browser UI for reviewing Markdown in iterative rounds.

Install

npm install -g markloop

Usage

Create a review task from a Markdown file:

markloop create path/to/file.md

Create a review task from stdin:

printf '%s' "$MARKDOWN" | markloop create

Read annotations for an existing task:

markloop get <taskId>

Start another review round from an existing task:

markloop update <taskId> path/to/file.md

Configure the host used in generated review URLs:

markloop set host your-machine.tailnet.ts.net

Start the local MarkLoop server:

markloop serve [port]

Release flow

This repository publishes the markloop package to npm from GitHub Actions when a Git tag matching v*.*.* is pushed.

  1. Update package.json to the target version.
  2. Commit the release change.
  3. Create a matching tag, for example v0.1.0.
  4. Push the commit and tag to GitHub.
  5. GitHub Actions runs .github/workflows/publish.yml, verifies the tag matches package.json, runs npm ci, npm test, npm run build, npm pack --dry-run, and then publishes the package.

npm publish permissions

The workflow currently publishes with an npm token stored as a GitHub repository secret named NPM_TOKEN.

For the first release:

  1. Create an npm token that is allowed to publish packages.
  2. Add it to the GitHub repository as the NPM_TOKEN Actions secret.
  3. Push a matching release tag such as v0.1.0.

This repository currently publishes with an npm token and without provenance because npm only accepts GitHub Actions provenance from public source repositories.

If you later make the repository public, you can re-enable provenance or migrate to npm trusted publishing for better security:

  • GitHub organization or user: parkgogogo
  • Repository: web-reviewer
  • Workflow filename: publish.yml

The workflow file already lives at .github/workflows/publish.yml.

Trusted publishing is a good follow-up hardening step, but npm only allows configuring it for packages that already exist in the registry.