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

@marrowdev/cli

v0.2.0

Published

Marrow data CLI — read / scout / search / monitor / usage from your shell. Flux NDJSON by default (pipes into flux-tools / hsh-bash), --md for humans. Thin wrapper over the Marrow edge API.

Readme

@marrowdev/cli

Marrow data CLI — read / scout / search / monitor / usage from your shell.

Outputs Flux NDJSON by default (pipes straight into flux-tools / hsh-bash), or human-readable markdown with --md. It's a thin Bearer wrapper over the Marrow edge API — the same billed route the @marrowdev/mcp server uses, so there's no separate code path.

Agents should use the MCP server (@marrowdev/mcp) instead. This CLI is for shells, CI, and hsh-bash pipelines — clients that aren't an LLM.

Install

npm i -g @marrowdev/cli      # or: bun add -g @marrowdev/cli

Auth

marrow login --api-key mrw_…                 # saves to ~/.config/marrow/config.json
# or:  export MARROW_API_KEY=mrw_…
# no key yet:  npx -y marrow-setup --email [email protected]

Precedence: --api-key flag → MARROW_API_KEY env → saved config.

Commands

marrow https://example.com                   # bare-URL shortcut = read
marrow read https://example.com --md         # clean markdown
marrow read https://example.com --change-tracking --tag daily
marrow scout https://example.com             # links/structure (cheap; scout→read saves tokens)
marrow search "rust async runtime" --limit 5
marrow crawl https://example.com --limit 10 --max-depth 2
marrow screenshot https://example.com -o shot.png
marrow monitor create https://example.com --interval 30 --webhook https://you/hook
marrow monitor list
marrow monitor run <id>
marrow monitor delete <id>
marrow usage --md

Global: --md, -o FILE, --api-url URL (self-host / edge override).

Flux output

Envelope { v, source:"marrow", type, event, …payload } — one compact JSON object per line.

| command | signal | |---|---| | read | doc:fetched | | scout | link:found | | search | result:found | | crawl | doc:fetched (one per page) | | read --change-tracking / monitor run | chunk:{added,modified,moved,removed} + diff:completed | | usage | usage:reported |

screenshot returns a binary PNG — it writes a file (-o, or an auto-named marrow-shot-<host>-<ts>.png) rather than NDJSON.

chunk:* mirrors flux-eye's file:{created,modified,deleted} — local file changes and remote web changes flow through the same flux_grep / flux_priority neurons.

marrow scout https://example.com | flux_grep type:link | flux_priority

Dev

bun src/index.ts --help      # run from source
npm run build                # tsc → dist/